All,
I have a specified type of pattern in my lex file:
"#"[ \\t]*"ifdef".* { action_ifdef_manager(yytext);}
if a text like this encoutred #ifdef GLOBALVAR the action action_ifdef_manager is not called
Thanks for any Help.
|
All, I have a specified type of pattern in my lex file:
if a text like this encoutred Thanks for any Help. |
|||||||||
|
|
AFaik the only problem is ambiguity of patterns, you should have a similar pattern like '#ifdef'
the lexer here returns in "abcd" stream all four validated patterns a , ab , abc, abcd take a look here http://flex.sourceforge.net/manual/Actions.html |
|||
|
|