Ejemplo n.º 1
0
 public static void Parse(AAProgram ast, ErrorCollection errors, SharedData data)
 {
     ast.Apply(new EnviromentBuilding(errors, data));
 }
Ejemplo n.º 2
0
 public EnviromentBuilding(ErrorCollection errors, SharedData data)
 {
     this.errors = errors;
     this.data   = data;
 }
Ejemplo n.º 3
0
 public SetArrayIndexes(SharedData data, ErrorCollection errors)
 {
     this.data   = data;
     this.errors = errors;
 }
 public MakeEnrichmentLinks(SharedData data, ErrorCollection errors)
 {
     this.data   = data;
     this.errors = errors;
 }
Ejemplo n.º 5
0
 public Enheritance(SharedData data, ErrorCollection errors)
 {
     this.data   = data;
     this.errors = errors;
 }
Ejemplo n.º 6
0
 public FixNamedRefferences(Node currentClone, SharedData data)
 {
     this.currentClone = currentClone;
     this.data         = data;
 }
Ejemplo n.º 7
0
 public CodeGeneration(ErrorCollection errors, SharedData data, DirectoryInfo outputDir)
 {
     this.errors    = errors;
     this.data      = data;
     this.outputDir = outputDir;
 }
Ejemplo n.º 8
0
 public static void Parse(AAProgram ast, ErrorCollection errors, SharedData data, DirectoryInfo outputDir)
 {
     ast.Apply(new CodeGeneration(errors, data, outputDir));
 }
Ejemplo n.º 9
0
 public SharedData()
 {
     LastCreated = this;
 }