Antlr4.Runtime.Vocabulary.Vocabulary C# (CSharp) Method

Vocabulary() public method

Constructs a new instance of Vocabulary from the specified literal and symbolic token names.
public Vocabulary ( string literalNames, string symbolicNames ) : System
literalNames string /// The literal names assigned to tokens, or /// /// if no literal names are assigned. ///
symbolicNames string /// The symbolic names assigned to tokens, or /// /// if no symbolic names are assigned. ///
return System
        public Vocabulary(string[] literalNames, string[] symbolicNames)
            : this(literalNames, symbolicNames, null)
        {
        }

Same methods

Vocabulary::Vocabulary ( string literalNames, string symbolicNames, string displayNames ) : System