Skip to content
Snippets Groups Projects
Commit 1eba7121 authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Add comment.

parent 1262a001
No related branches found
No related tags found
No related merge requests found
...@@ -216,6 +216,13 @@ End ectx_language. ...@@ -216,6 +216,13 @@ End ectx_language.
Arguments ectx_lang : clear implicits. Arguments ectx_lang : clear implicits.
Coercion ectx_lang : ectxLanguage >-> language. Coercion ectx_lang : ectxLanguage >-> language.
(* This definition makes sure that the fields of the [language] record do not
refer to the projections of the [ectxLanguage] record but to the actual fields
of the [ectxLanguage] record. This is crucial for canonical structure search to
work.
Note that this trick no longer works when we switch to canonical projections
because then the pattern match [let '...] will be desugared into projections. *)
Definition LanguageOfEctx (Λ : ectxLanguage) : language := Definition LanguageOfEctx (Λ : ectxLanguage) : language :=
let '@EctxLanguage E V C St of_val to_val empty comp fill head mix := Λ in let '@EctxLanguage E V C St of_val to_val empty comp fill head mix := Λ in
@Language E V St of_val to_val _ @Language E V St of_val to_val _
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment