2017-10-26 23:58:33 +02:00
|
|
|
// 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
|
2018-07-30 23:15:03 +02:00
|
|
|
ScriptBody : StatementList
|
|
|
|
|
|
|
|
It is a Syntax Error if AllPrivateNamesValid of StatementList with an empty List as an argument is false unless the source code is eval code that is being processed by a direct eval.
|
|
|
|
|
2018-08-01 20:20:57 +02:00
|
|
|
features: [class, class-fields-private]
|
2017-10-26 23:58:33 +02:00
|
|
|
negative:
|
2017-12-03 06:06:42 +01:00
|
|
|
phase: parse
|
2017-10-26 23:58:33 +02:00
|
|
|
type: SyntaxError
|
|
|
|
---*/
|
|
|
|
|
|
|
|
throw "Test262: This statement should not be evaluated.";
|
|
|
|
|
|
|
|
obj = {};
|
|
|
|
|
|
|
|
obj.#x;
|