예제 #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;
 }