I currently try to implement a PreProcessor into ANTLR4 for c# and got quite a lot of trouble finding any info about this. My digging through the GitHub sources of the C# project did not really have been successfull sadly ...
My goal is to retain the token offsets (so that column and line would not be thrown of by a preprocessed stream) example to roughly explain:
#define foo(bar) foobar(bar + bar * bar / 0.2)
int smthng = 2;
smthng += foo(12); //the ; should be at the same spot like the macro was a function
hope that you can point me to the correct docs or provide a simple example solution somewhere
kindly regards, Marco
PS to note it: i do not seek for a solution in which i pass an already preprocessed stream to ANTLR4 as that will fiddle with the offsets of the code.
Depends on how you preprocess the stream. If you replace all preprocessor lines (and those not visible due to #ifdef etc.) with line breaks your overall line number won't be messed up. In fact I even recommend to do preprocessing outside of the normal parse run (e.g. the input stream do that already).
Years ago I wrote a Windows .rc file parser. These resource files are in many aspects like C header files, so you need a preprocessor, macro handling with stringizing and charizing support and a few more things. I wrote it for ANTLR 2.7 (now you see how old it is :-) ). But still I believe it's a good example how to make preprocessing work (including
#include
).