aboutsummaryrefslogtreecommitdiffstats
path: root/test/language/module-code/instn-resolve-err-reference.js
blob: 1e6126f57709d640561fb32a85e89913f0c2ba7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Requested modules that produce an early ReferenceError
esid: sec-moduledeclarationinstantiation
info: |
    [...]
    8. For each String required that is an element of
       module.[[RequestedModules]] do,
       [...]
       b. Let requiredModule be ? HostResolveImportedModule(module, required).
    [...]
negative:
  phase: resolution
  type: ReferenceError
flags: [module]
---*/

throw "Test262: This statement should not be evaluated.";

import './instn-resolve-err-reference_FIXTURE.js';