Antlr4.Runtime.Tree.Pattern.TokenTagToken.TokenTagToken C# (CSharp) Метод

TokenTagToken() публичный Метод

Constructs a new instance of TokenTagToken with the specified token name, type, and label.
public TokenTagToken ( string tokenName, int type, string label ) : Antlr4.Runtime
tokenName string The token name.
type int The token type.
label string /// The label associated with the token tag, or /// /// if /// the token tag is unlabeled. ///
Результат Antlr4.Runtime
        public TokenTagToken(string tokenName, int type, string label)
            : base(type)
        {
            this.tokenName = tokenName;
            this.label = label;
        }

Same methods

TokenTagToken::TokenTagToken ( string tokenName, int type ) : Antlr4.Runtime