Relevant chunk of Irony grammar:

var VARIABLE = new RegexBasedTerminal("variable", @"(?-i)\$?\w+");

variable.Rule = VARIABLE;
tag_blk.Rule = html_tag_kw + attr_args_opt + block;
term_simple.Rule = NUMBER | STRING | variable | boolean | "null" | term_list;
term.Rule = term_simple | term_filter;
block.Rule = statement_list | statement | ";";
statement.Rule = tag_blk | directive_blk | term;

The problem is that both a "tag" and a "variable" can appear in the same place. I want my parser to prefer the tag over the variable, but it always prefers the variable. How can I change that?

I've tried changing tag_blk.Rule to PreferShiftHere() + html_tag_kw + attr_args_opt + block; and ImplyPrecedenceHere(-100) + html_tag_kw + attr_args_opt + block; but it doesn't help any. The parser doesn't even complain of an ambiguity.

link|improve this question

70% accept rate
Which lexer and parser generator are you using? – Kaleb Pederson Aug 5 '11 at 18:38
@Kaleb: Irony. I put it as a tag, but I guess I should have made it more evident. – Mark Aug 5 '11 at 20:53
feedback

1 Answer

Try changing the order of 'tag_blk.Rule' and 'variable.Rule' as tokenisers usually go after first match, and variable is first in your list.

link|improve this answer
I'd understand if they were within the same rule (A | B vs B | A) but...I'd be shocked if this made a difference. Nevertheless, I'll try it... – Mark Apr 19 '11 at 6:37
so how'd it go? – Bernhof Aug 2 '11 at 10:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.