mirror of
https://github.com/tc39/test262.git
synced 2025-10-18 22:33:56 +02:00
https://github.com/tc39/proposal-json-modules This proposal advanced to Stage 3 of TC39's standardization process on 2021-01-27.
21 lines
672 B
JavaScript
21 lines
672 B
JavaScript
// Copyright (C) 2021 the V8 project authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
/*---
|
|
esid: sec-parse-json-module
|
|
description: Does not define named bindings
|
|
info: |
|
|
In the early design of JSON modules, contributors considered allowing the
|
|
properties of object values in JSON modules to be imported directly by name.
|
|
This was ultimately rejected, so attempting to import in this way should
|
|
produce a SyntaxError.
|
|
flags: [module]
|
|
features: [json-modules]
|
|
negative:
|
|
phase: parse
|
|
type: SyntaxError
|
|
---*/
|
|
|
|
$DONOTEVALUATE();
|
|
|
|
import {name} from './json-named-bindings_FIXTURE.json' assert { type: 'json' };
|