Inheritance: ImportContext
示例#1
0
 public BikeImportContext(BikeImportContext other)
     : base(other.CoreLibFolder, other.AddonLibFolders)
 {
     lock (other.syncLock)
     {
         importedBikeFiles = new HashSet<string>(other.importedBikeFiles);
     }
 }
示例#2
0
 public BikeImportContext(BikeImportContext other)
     : base(other.CoreLibFolder, other.AddonLibFolders)
 {
     lock (other.syncLock)
     {
         importedBikeFiles = new HashSet <string>(other.importedBikeFiles);
     }
 }
示例#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);
 }