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