mirror of https://github.com/tc39/test262.git
23 lines
641 B
JavaScript
23 lines
641 B
JavaScript
|
// Copyright (C) 2017 Valerie Young. All rights reserved.
|
||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||
|
/*---
|
||
|
esid: sec-scripts-static-semantics-early-errors
|
||
|
description: Early error when referencing privatename on object, outside of class.
|
||
|
info: |
|
||
|
Static Semantics: Early Errors
|
||
|
Script : ScriptBody
|
||
|
1. Let names be an empty List.
|
||
|
...
|
||
|
3. If AllPrivateNamesValid of ScriptBody with the argument names is false, throw a SyntaxError exception.
|
||
|
features: [class-fields]
|
||
|
negative:
|
||
|
phase: early
|
||
|
type: SyntaxError
|
||
|
---*/
|
||
|
|
||
|
throw "Test262: This statement should not be evaluated.";
|
||
|
|
||
|
obj = {};
|
||
|
|
||
|
obj.#x;
|