diff --git a/tool/test/org/antlr/v4/test/TestActionTranslation.java b/tool/test/org/antlr/v4/test/TestActionTranslation.java index d6226290f..9fecaad6e 100644 --- a/tool/test/org/antlr/v4/test/TestActionTranslation.java +++ b/tool/test/org/antlr/v4/test/TestActionTranslation.java @@ -23,24 +23,6 @@ public class TestActionTranslation extends BaseTest { "d : ;\n" + ">>"; - String scopeTemplate = - "scopeTemplate(members,init,inline,finally,inline2) ::= <<\n" + - "parser grammar A;\n"+ - "@members {\n" + - "#members##end-members#\n" + - "}\n" + - "scope S { int i; }\n" + - "a\n" + - "scope { int z; }\n" + - "scope S;\n" + - "@init {#init##end-init#}\n" + - " : {\n" + - " #inline##end-inline#" + - " }\n" + - " ;\n" + - " finally {#finally##end-finally#}\n" + - ">>"; - @Test public void testEscapedLessThanInAction() throws Exception { String action = "i<3; ''"; String expected = "i<3; ''";