top-level-assignment-expr-not-optional.js (665B)
1 // |reftest| error:SyntaxError 2 // This file was procedurally generated from the following sources: 3 // - src/dynamic-import/assignment-expr-not-optional.case 4 // - src/dynamic-import/syntax/invalid/top-level.template 5 /*--- 6 description: It's a SyntaxError if AssignmentExpression is omitted (top level syntax) 7 esid: sec-import-call-runtime-semantics-evaluation 8 features: [dynamic-import] 9 flags: [generated] 10 negative: 11 phase: parse 12 type: SyntaxError 13 info: | 14 ImportCall : 15 import( AssignmentExpression ) 16 17 18 ImportCall : 19 import( AssignmentExpression[+In, ?Yield] ) 20 ---*/ 21 22 $DONOTEVALUATE(); 23 24 import(); 25 26 /* The params region intentionally empty */