Lines Matching refs:_node
102 private object _node; field in Antlr.Runtime.RecognitionException
245 return adaptor.GetType( _node );
300 return _node;
304 _node = value;
371 this._node = input.LT(1); in ExtractInformationFromTreeNodeStream()
401 IToken payload = adaptor.GetToken(positionNode ?? _node); in ExtractInformationFromTreeNodeStream()
440 else if (this._node is Tree.ITree) in ExtractInformationFromTreeNodeStream()
442 this._line = ((Tree.ITree)this._node).Line; in ExtractInformationFromTreeNodeStream()
443 this._charPositionInLine = ((Tree.ITree)this._node).CharPositionInLine; in ExtractInformationFromTreeNodeStream()
444 if (this._node is CommonTree) in ExtractInformationFromTreeNodeStream()
446 this._token = ((CommonTree)this._node).Token; in ExtractInformationFromTreeNodeStream()
451 int type = adaptor.GetType(this._node); in ExtractInformationFromTreeNodeStream()
452 string text = adaptor.GetText(this._node); in ExtractInformationFromTreeNodeStream()