summaryrefslogtreecommitdiff
path: root/src/Pure.ml
diff options
context:
space:
mode:
authorSon Ho2022-01-25 21:55:19 +0100
committerSon Ho2022-01-25 21:55:19 +0100
commit11c1991d81e3ecdf3fb348416cb1650b02d8efe3 (patch)
tree4d8648543976ca8883c2720ac9fa8fab4430a369 /src/Pure.ml
parent4789a0c1762dd8358b8c2f2b88653d0f9bf16059 (diff)
Finish implementing SymbolicToPure.translate_end_abstraction
Diffstat (limited to 'src/Pure.ml')
-rw-r--r--src/Pure.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Pure.ml b/src/Pure.ml
index 504f2c11..45907610 100644
--- a/src/Pure.ml
+++ b/src/Pure.ml
@@ -126,8 +126,8 @@ type left_value = unit
type let_bindings =
| Call of typed_lvalue list * call
(** The called function and the tuple of returned values. *)
- | Assignment of var * typed_rvalue
- (** Variable assignment: the introduced variable and the place we read *)
+ | Assign of typed_lvalue * typed_rvalue
+ (** Variable assignment: the introduced pattern and the place we read *)
| Deconstruct of
var_or_dummy list * (TypeDefId.id * VariantId.id) option * typed_rvalue
(** This is used in two cases.