/* Copyright (c) 2012-2022 The ANTLR Project. All rights reserved.* Use of this file is governed by the BSD 3-clause license that* can be found in the LICENSE.txt file in the project root.*//*** A token has properties: text, type, line, character position in the line* (so we can ignore tabs), token channel, index, and source from which* we obtained this token.*/export default class Token {constructor() {this.source = null;this.type = null; // token type of the tokenthis.channel = null; // The parser ignores everything not on DEFAULT_CHANNELthis.start = null; // optional; return -1 if FIXME.this.stop = null; // optional; return -1 if FIXME.this.tokenIndex = null; // from 0..n-1 of the token object in the input streamthis.line = null; // line=1..n of the 1st characterthis.column = null; // beginning of the line at which it occurs, 0..n-1this._text = null; // text of the token.}getTokenSource() {return this.source[0];}getInputStream() {return this.source[1];}get text(){return this._text;}set text(text) {this._text = text;}}Token.INVALID_TYPE = 0;/*** During lookahead operations, this "token" signifies we hit rule end ATN state* and did not follow it despite needing to.*/Token.EPSILON = -2;Token.MIN_USER_TOKEN_TYPE = 1;Token.EOF = -1;/*** All tokens go to the parser (unless skip() is called in that rule)* on a particular "channel". The parser tunes to a particular channel* so that whitespace etc... can go to the parser on a "hidden" channel.*/Token.DEFAULT_CHANNEL = 0;/*** Anything on different channel than DEFAULT_CHANNEL is not parsed* by parser.*/Token.HIDDEN_CHANNEL = 1;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。