Example #1
0
 public Compiler()
 {
     report = new Report();
     inputFiles = new ArrayList();
     references = new ArrayList();
     linkPaths = new ArrayList();
     softReferences = new ArrayList();
     target = Target.Exe;
 }
Example #2
0
 public TypeElementCreatingVisitor(Report report)
 {
     this.report = report;
 }
Example #3
0
 public TypeCheckingVisitor(Report report)
 {
     this.report = report;
     inSharedContext = false;
 }
Example #4
0
 public CodeGeneratingVisitor(Report report)
 {
     this.report = report;
     exceptionLevel = 0;
     inSharedContext = false;
 }