Antlr4.Runtime.Tree.Pattern.TagChunk.TagChunk C# (CSharp) 메소드

TagChunk() 공개 메소드

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. ///
리턴 System
        public TagChunk(string tag)
            : this(null, tag)
        {
        }

Same methods

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