Fix YAML indentation

This commit is contained in:
Veera 2023-05-16 18:40:35 -04:00 committed by Philip Chimento
parent bf337727a0
commit 732cfff666
2 changed files with 12 additions and 12 deletions

View File

@ -4,22 +4,22 @@
/*--- /*---
esid: sec-update-expressions-static-semantics-early-errors esid: sec-update-expressions-static-semantics-early-errors
description: > description: >
It is an early Syntax Error if AssignmentTargetType of UnaryExpression is not simple. (this) It is an early Syntax Error if AssignmentTargetType of UnaryExpression is not simple. (this)
info: | info: |
sec-static-semantics-assignmenttargettype sec-static-semantics-assignmenttargettype
PrimaryExpression: this PrimaryExpression: this
Return invalid. Return invalid.
sec-update-expressions-static-semantics-early-errors sec-update-expressions-static-semantics-early-errors
UpdateExpression: -- UnaryExpression UpdateExpression: -- UnaryExpression
It is an early Syntax Error if AssignmentTargetType of UnaryExpression is not simple. It is an early Syntax Error if AssignmentTargetType of UnaryExpression is not simple.
negative: negative:
phase: parse phase: parse
type: SyntaxError type: SyntaxError
---*/ ---*/
$DONOTEVALUATE(); $DONOTEVALUATE();

View File

@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
esid: sec-update-expressions-static-semantics-early-errors esid: sec-update-expressions-static-semantics-early-errors
description: > description: >
It is an early Syntax Error if AssignmentTargetType of UnaryExpression is not simple. (this) It is an early Syntax Error if AssignmentTargetType of UnaryExpression is not simple. (this)
info: | info: |