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
#foo"xxx" is parsed as a single token, and lexer thinks it's a symbol.
The problem is these rules:
// hash special symbols, lexer don't need to distinguish those// we only care if it's not pick up by vectors literals[/#/,null,/[bdxoeitf]/i,null,Lexer.symbol],
Those are exceptions to hash (vector literal) to handle special tokens. They need to added and sorted together with specials.
The text was updated successfully, but these errors were encountered:
So the problem is this:
#foo"xxx"
is parsed as a single token, and lexer thinks it's a symbol.The problem is these rules:
Those are exceptions to hash (vector literal) to handle special tokens. They need to added and sorted together with specials.
The text was updated successfully, but these errors were encountered: