UpdateExpressions: fix descriptions (#2051)

This commit is contained in:
Rick Waldron 2019-01-25 14:39:54 -05:00 committed by Leo Balter
parent 04a41383b5
commit 1068137f00
8 changed files with 10 additions and 10 deletions

View File

@ -4,7 +4,7 @@
/*---
esid: sec-update-expressions-static-semantics-early-errors
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: |
sec-identifiers-static-semantics-assignmenttargettype

View File

@ -4,13 +4,13 @@
/*---
esid: sec-update-expressions
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: |
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.
2. Return simple.
If this IdentifierReference is contained in strict mode code and StringValue of Identifier is "eval" or "arguments", return strict.
Return simple.
sec-update-expressions-static-semantics-early-errors

View File

@ -4,7 +4,7 @@
/*---
esid: sec-update-expressions-static-semantics-early-errors
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: |
sec-identifiers-static-semantics-assignmenttargettype

View File

@ -4,7 +4,7 @@
/*---
esid: sec-update-expressions
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: |
sec-identifiers-static-semantics-assignmenttargettype

View File

@ -4,7 +4,7 @@
/*---
esid: sec-update-expressions
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: |
sec-identifiers-static-semantics-assignmenttargettype

View File

@ -4,7 +4,7 @@
/*---
esid: sec-update-expressions
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: |
sec-identifiers-static-semantics-assignmenttargettype

View File

@ -4,7 +4,7 @@
/*---
esid: sec-update-expressions
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: |
sec-identifiers-static-semantics-assignmenttargettype

View File

@ -4,7 +4,7 @@
/*---
esid: sec-update-expressions
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: |
sec-identifiers-static-semantics-assignmenttargettype