aboutsummaryrefslogtreecommitdiff
path: root/src/Rewriter.v
diff options
context:
space:
mode:
Diffstat (limited to 'src/Rewriter.v')
-rw-r--r--src/Rewriter.v10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Rewriter.v b/src/Rewriter.v
index f03cf69d2..99201e27d 100644
--- a/src/Rewriter.v
+++ b/src/Rewriter.v
@@ -1288,6 +1288,16 @@ Module Compilers.
Let type_base := @type.base base.type.
Local Coercion type_base : base.type >-> type.type.
+ (** This definition takes in an identifier. If the identifier
+ is not meant to be evaluated eagerly, [None] is
+ returned. Otherwise, a value-thunk is returned. This
+ value-thunk takes in all of the arguments to which the
+ identifer will eventually be applied. If there is enough
+ structure for eager evaluation, then the identifier is
+ "evaluated" in Gallina (e.g., [eager_list_rect] turns into
+ [list_rect] over a concrete list of cons cells holding
+ PHOAS expressions), and the result of this evaluation is
+ returned." *)
(* N.B. the [with_lets] argument to [reflect] doesn't matter
here because [value' true (_ → _) ≡ value' false (_ → _)] *)
Definition reflect_ident_iota {t} (idc : ident t) : option (value t)