blob: e7bf80bce4641b020cecd1c0541194bc765f51af (
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
// Copyright (C) 2023 Veera Sivarajan. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-update-expressions-static-semantics-early-errors
description: >
It is an early Syntax Error if AssignmentTargetType of LeftHandSideExpression is not simple. (this)
info: |
sec-static-semantics-assignmenttargettype
PrimaryExpression: this
Return invalid.
sec-update-expressions-static-semantics-early-errors
UpdateExpression: LeftHandSideExpression --
It is an early Syntax Error if AssignmentTargetType of LeftHandSideExpression is not simple.
negative:
phase: parse
type: SyntaxError
---*/
$DONOTEVALUATE();
this--;
|