You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|App({ it = Constc }, [x]) whenF.equal c F.spillf ->
@@ -914,10 +914,10 @@ end = struct
914
914
scope_term_macro ~loc~state c xs
915
915
else
916
916
let bound =F.Set.mem c ctx in
917
-
if bound thenScopedTerm.App(ScopedTerm.mk_bound_const~lang:elpi_language c ~loc:cloc, xs)
918
-
elseif is_uvar_name c thenScopedTerm.UVar(ScopedTerm.mk_uvar c ~loc:cloc,xs)
919
-
elseif is_global c thenScopedTerm.App(ScopedTerm.mk_global_const~escape_ns:true (of_global c) ~loc:cloc,xs)
920
-
elseScopedTerm.App(ScopedTerm.mk_global_const c ~loc:cloc, xs)
917
+
if bound thenScopedTerm.mkBoundApp~lang:elpi_language ~loc:cloc c xs
918
+
elseif is_uvar_name c thenScopedTerm.mkUVar ~loc:cloc c xs
919
+
elseif is_global c thenScopedTerm.mkGlobalApp~escape_ns:true~loc:cloc (of_global c) xs
920
+
elseScopedTerm.mkGlobalApp ~loc:cloc c xs
921
921
|Cast (t,ty) ->
922
922
let t = scope_loc_term ~state ctx t in
923
923
let ty = scope_loc_tye F.Set.empty (RecoverStructure.structure_type_expression ty.Ast.TypeExpression.tloc Ast.Structured.Relation valid_functional ty) in
0 commit comments