NormalArgOperationWithBeforeCalc constructor Null safety
Implementation
NormalArgOperationWithBeforeCalc(
{StackLift? stackLift,
required Arg arg,
required StackLift Function(Resting) beforeCalculate,
required String name,
int maxOneByteOpcodes = 9999})
: _beforeCalculate = beforeCalculate,
super(
stackLift: stackLift ?? StackLift.enable,
arg: arg,
name: name,
maxOneByteOpcodes: maxOneByteOpcodes);