public void Append(ChunkSpecifications specs)
 {
     foreach (string name in specs.Keys)
     {
         if (ContainsKey(name))
         {
             continue;
         }
         Add(name, specs[name]);
     }
 }
Exemple #2
0
 public Interpreter(ChunkSpecifications specs)
 {
     SetupOpcodes();
     this.specs = specs;
 }