Fix improperly quoted string literal in template
This commit is contained in:
parent
dbc1bc5a51
commit
5af2411849
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue