Open VynceMontgomery opened 9 years ago
in section 12.12 a LogicalANDExpression is defined as
BitwiseORExpression[?In, ?Yield] LogicalANDExpression[?In, ?Yield] && BitwiseORExpression[?In, ?Yield]
why are those _BitwiseORExpression_s? shouldn't those be _LogicalORExpression_s?
similarly, 12.12.1, 12.12.2, and 12.12.3 each have one occurrence of
LogicalANDExpression : LogicalANDExpression && BitwiseORExpression
that (I believe) should be
LogicalANDExpression : LogicalANDExpression && LogicalORExpression
@VynceMontgomery Please file spec bugs over at https://bugs.ecmascript.org/.
This repository is only meant to be used for issues with the *.docx to *.html conversion script.
*.docx
*.html
oh, whoops. sorry.
in section 12.12 a LogicalANDExpression is defined as
why are those _BitwiseORExpression_s? shouldn't those be _LogicalORExpression_s?
similarly, 12.12.1, 12.12.2, and 12.12.3 each have one occurrence of
that (I believe) should be