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
The grammar relies on a ; to close function scopes when there are no braces. However, for instance inside of function arguments, like in the following example, it doesn't ever get to match against the ;:
The grammar relies on a
;
to close function scopes when there are no braces. However, for instance inside of function arguments, like in the following example, it doesn't ever get to match against the;
:As a result, there are too many function scopes on the stack that won't ever be closed:
This causes subsequent highlighting to break in some cases, for instance the type name
T
here:The text was updated successfully, but these errors were encountered: