
Hi,
In the override GetNextToken method of MergableLexerBase class, how to get the previous tokens or context ?
I'm writting a C language lexer which Inherits the MergableLexerBase, in the GetNextToken method, after read the '<', I want to determine whether it is the start of path-specific(#include <...>) or a operator, and give the different token ids.(Also between #include "..." and string literals)
I think after scan the preprocessor keywords, I should do something, but how ?
Thanks a lot!