mirror of
https://github.com/tc39/test262.git
synced 2025-12-01 19:13:19 +01:00
16 lines
375 B
Plaintext
16 lines
375 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 a CallExpression, it can't be preceded by the new keyword
|
|
template: syntax/invalid
|
|
info: |
|
|
CallExpression:
|
|
ImportCall
|
|
|
|
ImportCall :
|
|
import( AssignmentExpression[+In, ?Yield] )
|
|
---*/
|
|
|
|
//- import
|
|
new import('')
|