Antlr4.Runtime.Tree.Pattern.TextChunk.ToString C# (CSharp) Method

ToString() public method

The implementation for TextChunk returns the result of Text() in single quotes.

public ToString ( ) : string
return string
        public override string ToString()
        {
            return "'" + text + "'";
        }