add AssertIsList() template; sync with 5c52288845

This commit is contained in:
Terence Parr 2015-06-22 11:29:05 -07:00
parent cc804e57a1
commit 73fd170b62
1 changed files with 2 additions and 0 deletions

View File

@ -168,6 +168,8 @@ Concat(a,b) ::= "<a><b>"
DeclareLocal(s,v) ::= "Object <s> = <v>;"
AssertIsList(v) ::= "System.Collections.IList __ttt__ = <v>;" // just use static type system
AssignLocal(s,v) ::= "<s> = <v>;"
InitIntMember(n,v) ::= <%int <n> = <v>;%>