PhiInstruction constructor

PhiInstruction({
  1. required int offset,
  2. required Variable target,
  3. Map<BasicBlock, Value>? operands,
})

Implementation

PhiInstruction({
  required super.offset,
  required this.target,
  Map<BasicBlock, Value>? operands,
}) : operands = operands ?? {};