ProgramMemory15<OT extends ProgramOperation> constructor Null safety

ProgramMemory15<OT extends ProgramOperation>(
  1. Memory<OT> memory,
  2. OperationMap<OT> layout,
  3. int returnStackSize,
  4. OT lbl,
  5. OT rtn
)

Implementation

ProgramMemory15(Memory<OT> memory, OperationMap<OT> layout,
    int returnStackSize, OT lbl, OT rtn)
    : _lblOpcodes = _makeLblOpcodes(lbl),
      super(memory, layout, returnStackSize, rtn);