blob: 363377c7051f6f8428113e4adb75ceecd7251c8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// |reftest| error:SyntaxError
'use strict';
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-update-expressions
description: >
It is an early Syntax Error if AssignmentTargetType of UnaryExpression is strict. (arguments)
info: |
sec-identifiers-static-semantics-assignmenttargettype
If this IdentifierReference is contained in strict mode code and StringValue of Identifier is "eval" or "arguments", return strict.
sec-update-expressions-static-semantics-early-errors
UpdateExpression: -- UnaryExpression
It is an early Syntax Error if AssignmentTargetType of UnaryExpression is strict.
flags: [onlyStrict]
negative:
phase: parse
type: SyntaxError
---*/
$DONOTEVALUATE();
--arguments;
|