Exemplo n.º 1
0
 public Analyzer(Map<String, Object> options) {
     self = this;
     if (options != null) {
         this.options = options;
     } else {
         this.options = new HashMap<>();
     }
     stats.putInt("startTime", System.currentTimeMillis());
     this.suffix = ".rb";
     addEnvPath();
     copyModels();
     createCacheDir();
     getAstCache();
 }