Fix improperly quoted string literal in template

This commit is contained in:
Sam Harwell 2013-02-27 13:06:13 -06:00
parent dbc1bc5a51
commit 5af2411849
1 changed files with 3 additions and 2 deletions

View File

@ -679,8 +679,9 @@ contextGetterCollection(elementType) ::= <%
ContextTokenGetterDecl(t) ::=
"public ITerminalNode <t.name>() { return GetToken(<parser.name>.<t.name>, 0); }"
ContextTokenListGetterDecl(t) ::=
"public <contextGetterCollection("ITerminalNode")> <t.name>() { return GetTokens(<parser.name>.<t.name>); }"
ContextTokenListGetterDecl(t) ::= <<
public <contextGetterCollection("ITerminalNode")> <t.name>() { return GetTokens(<parser.name>.<t.name>); }
>>
ContextTokenListIndexedGetterDecl(t) ::= <<
public ITerminalNode <t.name>(int i) {
return GetToken(<parser.name>.<t.name>, i);