public void setupNativeResolver(string content)
 {
     this.nativeFile    = TypeScriptParser2.parseFile(content);
     this.nativeExports = Package.collectExportsFromFile(this.nativeFile, true);
     foreach (var trans in this.getTransformers(true))
     {
         trans.visitFiles(new SourceFile[] { this.nativeFile });
     }
 }
 public Compiler()
 {
     this.pacMan        = null;
     this.workspace     = null;
     this.nativeFile    = null;
     this.nativeExports = null;
     this.projectPkg    = null;
     this.hooks         = null;
 }