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