2016-03-29 17:50:54 +02:00
|
|
|
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
|
|
description: >
|
|
|
|
Abrupt completion during module evaluation precludes further evaluation
|
|
|
|
esid: sec-moduleevaluation
|
|
|
|
info: |
|
|
|
|
[...]
|
|
|
|
6. For each String required that is an element of
|
|
|
|
module.[[RequestedModules]] do,
|
|
|
|
a. Let requiredModule be ? HostResolveImportedModule(module, required).
|
|
|
|
b. Perform ? requiredModule.ModuleEvaluation().
|
2016-05-28 22:27:05 +02:00
|
|
|
negative:
|
2017-03-13 16:09:04 +01:00
|
|
|
phase: runtime
|
2016-05-28 22:27:05 +02:00
|
|
|
type: TypeError
|
2016-03-29 17:50:54 +02:00
|
|
|
flags: [module]
|
|
|
|
---*/
|
|
|
|
|
2016-04-22 22:29:24 +02:00
|
|
|
import './eval-rqstd-abrupt-err-type_FIXTURE.js';
|
|
|
|
import './eval-rqstd-abrupt-err-uri_FIXTURE.js';
|
2016-03-29 17:50:54 +02:00
|
|
|
|
|
|
|
throw new RangeError();
|