mirror of
https://github.com/tc39/test262.git
synced 2025-12-03 03:53:08 +01:00
15 lines
484 B
Plaintext
15 lines
484 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 trailing comma following first parameter
|
|
template: syntax/valid
|
|
info: |
|
|
ImportCall :
|
|
import( AssignmentExpression[+In, ?Yield, ?Await] ,opt )
|
|
import( AssignmentExpression[+In, ?Yield, ?Await] , AssignmentExpression[+In, ?Yield, ?Await] ,opt )
|
|
features: [import-attributes]
|
|
---*/
|
|
|
|
//- import
|
|
import('./empty_FIXTURE.js',)
|