mirror of
https://github.com/tc39/test262.git
synced 2025-11-30 02:23:10 +01:00
- Add cases for invalid syntax - Add valid cases - nested imports - add non existent file case - Fix cases and templates to use a full importcall expr token - add case for call expression position - remove unnecessary module flag from templates - Add templates for nested with
17 lines
380 B
Plaintext
17 lines
380 B
Plaintext
// Copyright (C) 2018 Leo Balter. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
/*---
|
|
desc: ImportCall is not extensible - no arguments list
|
|
template: syntax/invalid
|
|
info: |
|
|
ImportCall :
|
|
import( AssignmentExpression[+In, ?Yield] )
|
|
|
|
Forbidden Extensions
|
|
|
|
- ImportCall must not be extended.
|
|
---*/
|
|
|
|
//- import
|
|
import('', '')
|