Antlr4.Runtime.BufferedTokenStream.GetHiddenTokensToRight C# (CSharp) Method

GetHiddenTokensToRight() public method

Collect all hidden tokens (any off-default channel) to the right of the current token up until we see a token on Lexer.DefaultTokenChannel or EOF.
public GetHiddenTokensToRight ( int tokenIndex ) : IList
tokenIndex int
return IList
        public virtual IList<IToken> GetHiddenTokensToRight(int tokenIndex)
        {
            return GetHiddenTokensToRight(tokenIndex, -1);
        }

Same methods

BufferedTokenStream::GetHiddenTokensToRight ( int tokenIndex, int channel ) : IList