Esempio n. 1
0
 protected void processReadFiles(ReadFinishedHandler readFinishedHandler)
 {
     this.JsDuck = null;
     this.ProcessingInfo.StageIndex = 4;
     this.ProcessingInfo.StageName  = "Reading source directory json files.";
     this.Reader.ReadJsonTypesDirectories(
         this.progressHandlerReadFiles,
         readFinishedHandler
         );
 }
Esempio n. 2
0
 protected Processor()
 {
     this.Store             = new Store();
     this.Extractor         = new Extractor(this);
     this.Preparer          = new Preparer(this);
     this.JsDuck            = new JsDuck(this);
     this.Reader            = new Reader(this);
     this.Consolidator      = new Consolidator(this);
     this.SpecialsGenerator = new SpecialsGenerator(this);
     this.TypesChecker      = new TypesChecker(this);
     this.ResultsGenerator  = new ResultsGenerator(this);
     this.Exceptions        = new List <Exception>();
     this.JsDuckErrors      = new List <string>();
     this.ProcessingInfo    = new ProcessingInfo();
 }