I'm trying to add some tokens to the Token Stream. Any help on how to access
and edit the token stream would be appreciated.
Thanks,
Brett
I'm trying to add some tokens to the Token Stream. Any help on how to access
and edit the token stream would be appreciated.
Thanks,
Brett
The token stream is generated on-the-fly and processed, but is never stored in a form that would let you edit it directly. I guess you could lex all of the tokens you care about, edit them, and then programmatically insert your modified token stream with Preprocessor::EnterTokenStream.
- Doug