You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Various tools (e.g shift-parser-js) provide a way of querying the location corresponding to a node in some source text. We might consider saying what that means, at least for edge cases, such as:
do FormalParameters include parentheses?
do Programs include leading and/or trailing whitespace? what about when there are no non-whitespace tokens?
where do grouping parentheses go? e.g. in (a + b);, are they in the BinaryExpression or the ExpressionStatement?
The text was updated successfully, but these errors were encountered:
Followup to #69:
Various tools (e.g
shift-parser-js
) provide a way of querying the location corresponding to a node in some source text. We might consider saying what that means, at least for edge cases, such as:Program
s include leading and/or trailing whitespace? what about when there are no non-whitespace tokens?(a + b);
, are they in theBinaryExpression
or theExpressionStatement
?The text was updated successfully, but these errors were encountered: