565c83f843
TBR=neis@chromium.org NOTRY=true Bug: chromium:866862 Change-Id: I7c143eb67edcb54ab1fe260d1d7da6eedb44bfc2 Reviewed-on: https://chromium-review.googlesource.com/1219635 Reviewed-by: Michael Achenbach <machenbach@chromium.org> Commit-Queue: Michael Achenbach <machenbach@chromium.org> Cr-Commit-Position: refs/heads/master@{#55795}
41 lines
921 B
JavaScript
41 lines
921 B
JavaScript
// Copyright 2017 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Flags: --allow-natives-syntax --harmony-dynamic-import
|
|
// Resources: test/mjsunit/harmony/modules-skip-1.js
|
|
|
|
ran = false;
|
|
async function test1() {
|
|
try {
|
|
let x = { toString() { return 'modules-skip-1.js' } };
|
|
let namespace = await import(x);
|
|
let life = namespace.life();
|
|
assertEquals(42, life);
|
|
ran = true;
|
|
} catch(e) {
|
|
%AbortJS('failure: '+ e);
|
|
}
|
|
}
|
|
|
|
test1();
|
|
%RunMicrotasks();
|
|
assertTrue(ran);
|
|
|
|
ran = false;
|
|
async function test2() {
|
|
try {
|
|
let x = { get toString() { return () => 'modules-skip-1.js' } };
|
|
let namespace = await import(x);
|
|
let life = namespace.life();
|
|
assertEquals(42, life);
|
|
ran = true;
|
|
} catch(e) {
|
|
%AbortJS('failure: '+ e);
|
|
}
|
|
}
|
|
|
|
test2();
|
|
%RunMicrotasks();
|
|
assertTrue(ran);
|