exp-operator-syntax-error-delete-unary-expression-base.js (537B)
1 // |reftest| error:SyntaxError 2 // Copyright (C) 2016 Rick Waldron. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 /*--- 6 author: Rick Waldron 7 esid: sec-unary-operators 8 description: Exponentiation Expression syntax error, `delete` UnaryExpression 9 info: | 10 ExponentiationExpression : 11 UnaryExpression 12 ... 13 14 UnaryExpression : 15 ... 16 `delete` UnaryExpression 17 ... 18 features: [exponentiation] 19 20 negative: 21 phase: parse 22 type: SyntaxError 23 ---*/ 24 25 $DONOTEVALUATE(); 26 delete o.p ** 2;