AssignInstruction constructor

AssignInstruction({
  1. required int offset,
  2. required Variable target,
  3. required Value value,
})

Implementation

AssignInstruction({
  required super.offset,
  required this.target,
  required this.value,
});