summaryrefslogtreecommitdiff
path: root/compiler/Config.ml
diff options
context:
space:
mode:
authorSon Ho2023-11-09 11:21:53 +0100
committerSon Ho2023-11-09 11:21:53 +0100
commit9df1d191cfaf929b755e9d26d55811531acd939d (patch)
tree4ae1c0054bd96ba6583a3c7c686f3cf232205f27 /compiler/Config.ml
parent530a5ae56209061f091bbcafee82de07039a8124 (diff)
Fix a small issue in AssociatedTypes
Diffstat (limited to 'compiler/Config.ml')
-rw-r--r--compiler/Config.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/Config.ml b/compiler/Config.ml
index cd0903b6..8483c879 100644
--- a/compiler/Config.ml
+++ b/compiler/Config.ml
@@ -333,6 +333,6 @@ let parameterize_trait_types = ref false
*)
let type_check_pure_code = ref false
-(** Shall we fail hard if there is an issue at code-generation time?
- We may not want in case outputting a code with holes helps debugging *)
-let extract_fail_hard = ref false
+(** Shall we fail hard if we encounter an issue, or should we attempt to go
+ as far as possible while leaving "holes" in the generated code? *)
+let fail_hard = ref true