CSLE.CLS_Environment.File_CompileToken C# (CSharp) Method

File_CompileToken() public method

public File_CompileToken ( string filename, IList listToken, bool embDebugToken ) : void
filename string
listToken IList
embDebugToken bool
return void
        public void File_CompileToken(string filename, IList<Token> listToken, bool embDebugToken)
        {
            logger.Log("File_CompilerToken:" + filename);
            IList<ICLS_Type> types = compiler.FileCompile(this, filename, listToken, embDebugToken);
            foreach (var type in types)
            {
                if (this.GetTypeByKeywordQuiet(type.keyword) == null)
                    this.RegType(type);
            }
        }