CSLE.CLS_Expression_Compiler.Compiler_Using C# (CSharp) Method

Compiler_Using() private method

private Compiler_Using ( IList tokens, ICLS_Environment env, int pos, int posend ) : List
tokens IList
env ICLS_Environment
pos int
posend int
return List
        List<string> Compiler_Using(IList<Token> tokens, ICLS_Environment env, int pos, int posend)
        {
            List<string> _namespace = new List<string>();

            for (int i = pos + 1; i <= posend; i++)
            {
                if (tokens[i].type == TokenType.PUNCTUATION && tokens[i].text == ".")
                    continue;
                else
                    _namespace.Add(tokens[i].text);
            }
            return _namespace;
        }
        //Dictionary<string, functioninfo> funcs = new Dictionary<string, functioninfo>();