"INT : '0';\n");
Tool antlr = newTool();
CodeGenerator generator = new CodeGenerator(antlr, g, "Java");
g.setCodeGenerator(generator);
generator.genRecognizer(); // forces load of templates
ActionTranslator translator = new ActionTranslator(generator,"a",
new antlr.CommonToken(ANTLRParser.ACTION,action),1);
String rawTranslation =
translator.translate();
StringTemplateGroup templates =
new StringTemplateGroup(".", AngleBracketTemplateLexer.class);
StringTemplate actionST = new StringTemplate(templates, rawTranslation);
String found = actionST.toString();
assertEquals(expecting, found);
assertEquals("unexpected errors: "+equeue, 0, equeue.errors.size());
translator = new ActionTranslator(generator,
"a",
new antlr.CommonToken(ANTLRParser.ACTION,action2),2);
rawTranslation =
translator.translate();
templates =
new StringTemplateGroup(".", AngleBracketTemplateLexer.class);
actionST = new StringTemplate(templates, rawTranslation);
found = actionST.toString();