forked from jasder/antlr
rm unused template
This commit is contained in:
parent
82d0cbc3f6
commit
162c6138a5
|
@ -26,7 +26,7 @@ grammar(grammarName) ::= <<
|
||||||
grammar <grammarName>;
|
grammar <grammarName>;
|
||||||
ifStatement
|
ifStatement
|
||||||
@after {
|
@after {
|
||||||
<DeclareListLocal("items","$ctx.elseIfStatement()")>
|
<DeclareLocal("items","$ctx.elseIfStatement()")>
|
||||||
}
|
}
|
||||||
: 'if' expression
|
: 'if' expression
|
||||||
( ( 'then'
|
( ( 'then'
|
||||||
|
|
|
@ -173,8 +173,6 @@ Concat(a,b) ::= "<a><b>"
|
||||||
|
|
||||||
DeclareLocal(s,v) ::= "Object <s> = <v>;"
|
DeclareLocal(s,v) ::= "Object <s> = <v>;"
|
||||||
|
|
||||||
DeclareListLocal(s,v) ::= "List <s> = <v>;"
|
|
||||||
|
|
||||||
AssignLocal(s,v) ::= "<s> = <v>;"
|
AssignLocal(s,v) ::= "<s> = <v>;"
|
||||||
|
|
||||||
InitIntMember(n,v) ::= <%int <n> = <v>;%>
|
InitIntMember(n,v) ::= <%int <n> = <v>;%>
|
||||||
|
|
Loading…
Reference in New Issue