emmit a t_function when no variables are captured
This commit is contained in:
parent
6fbe43d28a
commit
962a98da75
@ -232,7 +232,10 @@ and transpile_environment_element_type : AST.environment_element -> type_value r
|
|||||||
let%bind arg' = transpile_type arg in
|
let%bind arg' = transpile_type arg in
|
||||||
let%bind env' = transpile_environment ae.environment in
|
let%bind env' = transpile_environment ae.environment in
|
||||||
let sub_env = Mini_c.Environment.select captured_variables env' in
|
let sub_env = Mini_c.Environment.select captured_variables env' in
|
||||||
ok @@ Combinators.t_deep_closure sub_env arg' ret'
|
if sub_env = [] then
|
||||||
|
transpile_type ele.type_value
|
||||||
|
else
|
||||||
|
ok @@ Combinators.t_deep_closure sub_env arg' ret'
|
||||||
| _ -> transpile_type ele.type_value
|
| _ -> transpile_type ele.type_value
|
||||||
end
|
end
|
||||||
| _ -> transpile_type ele.type_value
|
| _ -> transpile_type ele.type_value
|
||||||
|
Loading…
Reference in New Issue
Block a user