blob: 0569084538301d971b5f3ec478ea0cddf6e535aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
// Copyright (C) 2021 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
AssertClause in ImportDeclaration may not be preceded by a line terminator
esid: sec-modules
info: |
ImportDeclaration:
import ModuleSpecifier[no LineTerminator here] AssertClause;
AssertClause:
assert {}
assert {AssertEntries ,opt}
AssertEntries:
AssertionKey : StringLiteral
AssertionKey : StringLiteral , AssertEntries
AssertionKey:
IdentifierName
StringLiteral
The restriction LineTerminator could be verified more simply with a negative
syntax test. This test is designed to parse successfully in order to verify
the restriction more precisely.
features: [import-assertions, globalThis]
flags: [module, raw]
---*/
var callCount = 0;
// Define a property on the global "this" value so that the effect of the
// expected IdentifierReference can be observed.
Object.defineProperty(globalThis, 'assert', {
get: function() {
callCount += 1;
}
});
import x from './import-assertion-1_FIXTURE.js'
assert
{test262:''};
if (x !== 262.1) {
throw 'module value incorrectly imported - first declaration';
}
if (callCount !== 1) {
throw 'IdentifierReference not recognized - first declaration';
}
import './import-assertion-2_FIXTURE.js'
assert
{test262:''};
if (globalThis.test262 !== 262.2) {
throw 'module value incorrectly imported - second declaration';
}
if (callCount !== 2) {
throw 'IdentifierReference not recognized - second declaration';
}
export * from './import-assertion-3_FIXTURE.js'
assert
{test262:''};
if (callCount !== 3) {
throw 'IdentifierReference not recognized - third declaration';
}
reportCompare(0, 0);
|