Hi,

   I want to do callback in the custom code block instead of hardcode. Say for 
eg conside I have this rule in my grammar

statements : statement statements EOF {xxxxxx}
                  | statement EOF                 {yyyyy}
            
where xxxxxxx and yyyyyyy are some code in c that is doing some work. Instead 
of 
doing like this I would like to do like

statements : statement statements EOF 
{ANTLR_base_class->match("statements",...)}
                  | 
statement EOF                  {ANTLR_base_class->match("statement",...)}

Where ANTLR_base_class is some class in ANTLR and say match is virtual 
function. 
Now i can derive from this base class and I can write my own code. Is it 
possible to do like this in ANTLR for target language c.


List: http://www.antlr.org/mailman/listinfo/antlr-interest
Unsubscribe: 
http://www.antlr.org/mailman/options/antlr-interest/your-email-address

-- 
You received this message because you are subscribed to the Google Groups 
"il-antlr-interest" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/il-antlr-interest?hl=en.

Reply via email to