2020-06-12 13:33:14 +02:00
|
|
|
open Errors
|
2020-01-20 19:15:09 +01:00
|
|
|
open Mini_c
|
|
|
|
open Trace
|
|
|
|
|
2020-06-12 13:33:14 +02:00
|
|
|
let self_in_lambdas : expression -> (expression,_) result =
|
2020-01-20 19:15:09 +01:00
|
|
|
fun e ->
|
|
|
|
match e.content with
|
|
|
|
| E_closure {binder=_ ; body} ->
|
|
|
|
let%bind _self_in_lambdas = Helpers.map_expression
|
|
|
|
(fun e -> match e.content with
|
2020-03-23 15:14:55 -05:00
|
|
|
| E_constant {cons_name=C_SELF_ADDRESS; _} -> fail (bad_self_address C_SELF_ADDRESS)
|
2020-01-20 19:15:09 +01:00
|
|
|
| _ -> ok e)
|
|
|
|
body in
|
|
|
|
ok e
|
|
|
|
| _ -> ok e
|