예제 #1
0
 public ProductionActionTypeContext(TypeTable typeTable,
                                    INoAction noAction)
 {
     this.typeTable = typeTable;
     this.noAction  = noAction;
     missing        = new MissingReferenceTable();
 }
예제 #2
0
 public DefinitionActionTypeContext(TypeTable typeTable,
                                    MissingReferenceTable missing,
                                    INoAction noAction,
                                    string productionName)
 {
     this.typeTable      = typeTable;
     this.missing        = missing;
     this.noAction       = noAction;
     this.productionName = productionName;
 }