I download a c preprocessor grammar on the antlr website.But it has an error and I have no idea about how to correct it.
macroExpansion
: id=IDENTIFIER WS? LPAREN WS? RPAREN -> ^(EXPAND $id)
| id=IDENTIFIER WS? LPAREN WS? macArgs WS? RPAREN -> ^(EXPAND $id macArgs?)
rule macroExpansion will go wrong for the code below:
typedef VOID (WINAPI *PFIBER_START_ROUTINE)( LPVOID lpFiberParameter );
Because tokens following VOID would be considered as arguments,but in fact VOID is just a macro not a function marco.
How can I change the grammar?Hope anyone can help me.Thanks!