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

GetSymbolicName() private method

private GetSymbolicName ( int tokenType ) : string
tokenType int
return string
        public virtual string GetSymbolicName(int tokenType)
        {
            if (tokenType >= 0 && tokenType < symbolicNames.Length)
            {
                return symbolicNames[tokenType];
            }
            if (tokenType == TokenConstants.Eof)
            {
                return "EOF";
            }
            return null;
        }