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