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
Notice that the first whitespace directive __ should exist inside params rather than before it. here, it exists before it. This means in a code construct like
contract Foo is bar, baz {
}
the end position of the Modifier baz actually covers al the whitespace after baz instead of just covering till z. This is a problem with lot of node definitions where everything after the whitespace __ is optional.
The text was updated successfully, but these errors were encountered:
A lot of definitions in the grammar are similar to
Notice that the first whitespace directive
__
should exist inside params rather than before it. here, it exists before it. This means in a code construct likethe
end
position of the Modifierbaz
actually covers al the whitespace after baz instead of just covering tillz
. This is a problem with lot of node definitions where everything after the whitespace__
is optional.The text was updated successfully, but these errors were encountered: