Skip to content
Snippets Groups Projects
Commit 1068137f authored by Rick Waldron's avatar Rick Waldron Committed by Leo Balter
Browse files

UpdateExpressions: fix descriptions (#2051)

parent 04a41383
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
/*--- /*---
esid: sec-update-expressions-static-semantics-early-errors esid: sec-update-expressions-static-semantics-early-errors
description: > description: >
It is an early Reference Error if AssignmentTargetType of LeftHandSideExpression is invalid. (arguments) In non-strict code, "arguments--" does not produce an early error.
info: | info: |
sec-identifiers-static-semantics-assignmenttargettype sec-identifiers-static-semantics-assignmenttargettype
......
...@@ -4,13 +4,13 @@ ...@@ -4,13 +4,13 @@
/*--- /*---
esid: sec-update-expressions esid: sec-update-expressions
description: > description: >
It is an early Reference Error if AssignmentTargetType of LeftHandSideExpression is invalid. (eval) In non-strict code, "eval--" does not produce an early error.
info: | info: |
sec-identifiers-static-semantics-assignmenttargettype sec-identifiers-static-semantics-assignmenttargettype
1. If this IdentifierReference is contained in strict mode code and StringValue of Identifier is "eval" or "arguments", return strict. If this IdentifierReference is contained in strict mode code and StringValue of Identifier is "eval" or "arguments", return strict.
2. Return simple. Return simple.
sec-update-expressions-static-semantics-early-errors sec-update-expressions-static-semantics-early-errors
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
/*--- /*---
esid: sec-update-expressions-static-semantics-early-errors esid: sec-update-expressions-static-semantics-early-errors
description: > description: >
It is an early Reference Error if AssignmentTargetType of LeftHandSideExpression is invalid. (arguments) In non-strict code, "arguments++" does not produce an early error.
info: | info: |
sec-identifiers-static-semantics-assignmenttargettype sec-identifiers-static-semantics-assignmenttargettype
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
/*--- /*---
esid: sec-update-expressions esid: sec-update-expressions
description: > description: >
It is an early Reference Error if AssignmentTargetType of LeftHandSideExpression is invalid. (eval) In non-strict code, "eval++" does not produce an early error.
info: | info: |
sec-identifiers-static-semantics-assignmenttargettype sec-identifiers-static-semantics-assignmenttargettype
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
/*--- /*---
esid: sec-update-expressions esid: sec-update-expressions
description: > description: >
It is an early Reference Error if AssignmentTargetType of UnaryExpression is invalid. (arguments) In non-strict code, "--arguments" does not produce an early error.
info: | info: |
sec-identifiers-static-semantics-assignmenttargettype sec-identifiers-static-semantics-assignmenttargettype
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
/*--- /*---
esid: sec-update-expressions esid: sec-update-expressions
description: > description: >
It is an early Reference Error if AssignmentTargetType of UnaryExpression is invalid. (eval) In non-strict code, "--eval" does not produce an early error.
info: | info: |
sec-identifiers-static-semantics-assignmenttargettype sec-identifiers-static-semantics-assignmenttargettype
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
/*--- /*---
esid: sec-update-expressions esid: sec-update-expressions
description: > description: >
It is an early Reference Error if AssignmentTargetType of UnaryExpression is invalid. (arguments) In non-strict code, "++arguments" does not produce an early error.
info: | info: |
sec-identifiers-static-semantics-assignmenttargettype sec-identifiers-static-semantics-assignmenttargettype
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
/*--- /*---
esid: sec-update-expressions esid: sec-update-expressions
description: > description: >
It is an early Reference Error if AssignmentTargetType of UnaryExpression is invalid. (eval) In non-strict code, "++eval" does not produce an early error.
info: | info: |
sec-identifiers-static-semantics-assignmenttargettype sec-identifiers-static-semantics-assignmenttargettype
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment