archives

« Bugzilla Issues Index

#3513 — Second part of 12.14.4, variables inconsistently used


In the second part of 12.14.4, dealing with the semantics of this

AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression

steps 7 and 8 currently read like this:

7. Let operator be the @ where AssignmentOperator is @=
8. Let r be the result of applying operator @ to lval and rval.

They should read like this:

7. Let oper be the @ where AssignmentOperator is @=
8. Let r be the result of applying operator oper to lval and rval.


fixed in rev31 editor's draft


In Rev31