add C# keyword
This commit is contained in:
parent
ae3aadce3f
commit
b2e51e20b7
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue