Antlr4.Runtime.CommonTokenStream.CommonTokenStream C# (CSharp) Method

CommonTokenStream() public method

Constructs a new CommonTokenStream using the specified token source and the default token channel ( TokenConstants.DefaultChannel ).
public CommonTokenStream ( ITokenSource tokenSource ) : Antlr4.Runtime.Sharpen
tokenSource ITokenSource The token source.
return Antlr4.Runtime.Sharpen
        public CommonTokenStream(ITokenSource tokenSource)
            : base(tokenSource)
        {
        }

Same methods

CommonTokenStream::CommonTokenStream ( ITokenSource tokenSource, int channel ) : Antlr4.Runtime.Sharpen