2018-01-15 22:19:50 +01:00
|
|
|
// Copyright (c) 2018 Mike Pennisi. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
|
|
esid: sec-delete-operator-static-semantics-early-errors
|
|
|
|
description: Parsing error when operand is an IdentifierReference
|
|
|
|
info: |
|
|
|
|
It is a Syntax Error if the UnaryExpression is contained in strict mode code
|
|
|
|
and the derived UnaryExpression is PrimaryExpression:IdentifierReference.
|
|
|
|
negative:
|
|
|
|
phase: parse
|
|
|
|
type: SyntaxError
|
|
|
|
flags: [onlyStrict]
|
|
|
|
---*/
|
|
|
|
|
2018-10-11 16:59:24 +02:00
|
|
|
$DONOTEVALUATE();
|
2018-01-15 23:55:54 +01:00
|
|
|
|
2018-01-15 22:19:50 +01:00
|
|
|
delete test262identifier;
|