jorendorff / es-spec-html

An HTML version of the ECMAScript draft specification autogenerated from the source
http://ecma-international.org/ecma-262/5.1/
51 stars 17 forks source link

LogicalANDExpression definition #93

Open VynceMontgomery opened 9 years ago

VynceMontgomery commented 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
mathiasbynens commented 9 years ago

@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.

VynceMontgomery commented 9 years ago

oh, whoops. sorry.