标签: antlr
如何在不创建令牌的情况下确定此变量honor的值?
honor
date_honors : honor = (NAME|DIGIT)+ { System.out.println("honors: " + $honor.text ); } ;
honor的输入为9,但结果为$honor.text = null。
$honor.text = null
答案 0 :(得分:0)
尝试(荣誉+ = NAME |荣誉+ = DIGIT)+然后$ honor是一个代币列表。