コード例 #1
0
 public PatternAnalyzer(ErrorLog errorLog, SymbolTable symbolTable, IodineAstVisitor parent)
 {
     parentVisitor    = parent;
     this.symbolTable = symbolTable;
     this.errorLog    = errorLog;
 }
コード例 #2
0
 public FunctionAnalyser(ErrorLog errorLog, SymbolTable symbolTable)
 {
     this.errorLog    = errorLog;
     this.symbolTable = symbolTable;
 }