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
Lexer processes all tokens at once and stores into vector. We want to support processing per token whether we want to single-process or batch-process for the parser.
The lexer routine logic take advantage of the fact that we are simply pushing to a vector of tokens. There will be major restructuring to get rid of this dependency.
The text was updated successfully, but these errors were encountered:
Lexer processes all tokens at once and stores into vector. We want to support processing per token whether we want to single-process or batch-process for the parser.
The lexer routine logic take advantage of the fact that we are simply pushing to a vector of tokens. There will be major restructuring to get rid of this dependency.
The text was updated successfully, but these errors were encountered: