add C# keyword

This commit is contained in:
parrt 2017-03-16 09:49:40 -07:00
parent ae3aadce3f
commit b2e51e20b7
1 changed files with 7 additions and 0 deletions

View File

@ -46,6 +46,9 @@ using Antlr4.Runtime.Atn;
using Antlr4.Runtime.Misc;
using Antlr4.Runtime.Tree;
using DFA = Antlr4.Runtime.Dfa.DFA;
<if(contextSuperClass)>
using <contextSuperClass>;
<endif>
<parser>
<if(file.genPackage)>
@ -62,6 +65,9 @@ namespace <file.genPackage> {
using Antlr4.Runtime.Misc;
using IParseTreeListener = Antlr4.Runtime.Tree.IParseTreeListener;
using IToken = Antlr4.Runtime.IToken;
<if(contextSuperClass)>
using <contextSuperClass>;
<endif>
/// \<summary>
/// This interface defines a complete listener for a parse tree produced by
@ -1145,6 +1151,7 @@ csIdentifier ::= [
"ushort" : "@ushort",
"using" : "@using",
"virtual" : "@virtual",
"values" : "@values",
"void" : "@void",
"volatile" : "@volatile",
"while" : "@while",