rm unused template

This commit is contained in:
Terence Parr 2015-06-20 12:21:51 -07:00
parent 82d0cbc3f6
commit 162c6138a5
2 changed files with 1 additions and 3 deletions

View File

@ -26,7 +26,7 @@ grammar(grammarName) ::= <<
grammar <grammarName>;
ifStatement
@after {
<DeclareListLocal("items","$ctx.elseIfStatement()")>
<DeclareLocal("items","$ctx.elseIfStatement()")>
}
: 'if' expression
( ( 'then'

View File

@ -173,8 +173,6 @@ Concat(a,b) ::= "<a><b>"
DeclareLocal(s,v) ::= "Object <s> = <v>;"
DeclareListLocal(s,v) ::= "List <s> = <v>;"
AssignLocal(s,v) ::= "<s> = <v>;"
InitIntMember(n,v) ::= <%int <n> = <v>;%>