Lex.TokenList.TokenList C# (CSharp) Method

TokenList() public method

public TokenList ( List tokens ) : System
tokens List
return System
        public TokenList(List<Token> tokens)
        {
            this.tokens = tokens.ToArray();
        }