Antlr4.Runtime.Tree.Pattern.TagChunk.TagChunk C# (CSharp) Method

TagChunk() public method

Construct a new instance of TagChunk using the specified tag and no label.
/// IllegalArgumentException /// if /// /// is /// /// or /// empty. ///
public TagChunk ( string tag ) : System
tag string /// The tag, which should be the name of a parser rule or token /// type. ///
return System
        public TagChunk(string tag)
            : this(null, tag)
        {
        }

Same methods

TagChunk::TagChunk ( string label, string tag ) : System