示例#1
0
文件: compiler.cs 项目: shugo/babel
 public Compiler()
 {
     report = new Report();
     inputFiles = new ArrayList();
     references = new ArrayList();
     linkPaths = new ArrayList();
     softReferences = new ArrayList();
     target = Target.Exe;
 }
示例#2
0
文件: eltcreate.cs 项目: shugo/babel
 public TypeElementCreatingVisitor(Report report)
 {
     this.report = report;
 }
示例#3
0
文件: typecheck.cs 项目: shugo/babel
 public TypeCheckingVisitor(Report report)
 {
     this.report = report;
     inSharedContext = false;
 }
示例#4
0
文件: codegen.cs 项目: shugo/babel
 public CodeGeneratingVisitor(Report report)
 {
     this.report = report;
     exceptionLevel = 0;
     inSharedContext = false;
 }