C# Класс Antlr4.Runtime.Tree.Pattern.TokenTagToken

Наследование: Antlr4.Runtime.CommonToken
Показать файл Открыть проект Примеры использования класса

Private Properties

Свойство Тип Описание

Открытые методы

Метод Описание
ToString ( ) : string

The implementation for TokenTagToken returns a string of the form tokenName:type .

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

Constructs a new instance of TokenTagToken for an unlabeled tag with the specified token name and type.

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

Constructs a new instance of TokenTagToken with the specified token name, type, and label.

Описание методов

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

The implementation for TokenTagToken returns a string of the form tokenName:type .

public ToString ( ) : string
Результат string

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

Constructs a new instance of TokenTagToken for an unlabeled tag with the specified token name and type.
public TokenTagToken ( string tokenName, int type ) : Antlr4.Runtime
tokenName string The token name.
type int The token type.
Результат Antlr4.Runtime

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