Inheritance: ImportContext
Exemplo n.º 1
0
 public BikeImportContext(BikeImportContext other)
     : base(other.CoreLibFolder, other.AddonLibFolders)
 {
     lock (other.syncLock)
     {
         importedBikeFiles = new HashSet<string>(other.importedBikeFiles);
     }
 }
Exemplo n.º 2
0
 public BikeImportContext(BikeImportContext other)
     : base(other.CoreLibFolder, other.AddonLibFolders)
 {
     lock (other.syncLock)
     {
         importedBikeFiles = new HashSet <string>(other.importedBikeFiles);
     }
 }
Exemplo n.º 3
0
 private InterpretationContext(ScopeStack scopeStack,
                               ClrImportContext clrImportContext, BikeImportContext bikeImportContext)
 {
     Instance               = this;
     this.scopeStack        = scopeStack;
     this.clrImportContext  = clrImportContext;
     this.bikeImportContext = bikeImportContext;
     Interpreter            = new Interpreter(this);
 }