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
Copy file name to clipboardExpand all lines: src/coq_elpi_builtins.ml
+14-4Lines changed: 14 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -604,7 +604,7 @@ let argument_mode = let open Conv in let open API.AlgebraicData in declare {
604
604
605
605
606
606
let set_accumulate_text_to_db, get_accumulate_text_to_db =
607
-
let f =ref (fun__ -> assertfalse) in
607
+
let f =ref (fun___-> assertfalse) in
608
608
(funx -> f := x),
609
609
(fun() -> !f)
610
610
@@ -4084,10 +4084,19 @@ Supported attributes:
4084
4084
In(B.unspecB.string,"Indexing",
4085
4085
In(B.string,"PredName",
4086
4086
In(B.list (B.pairargument_modeB.string),"Spec",
4087
-
Full(global,"Declares a new predicate PredName in the data base Db. Indexing can be left unspecified. Spec gathers a mode and a type for each argument. CAVEAT: types and indexing are strings instead of proper data types; beware parsing errors are fatal"))))),
4088
-
(fundbnameindexingprednamespec~depth__state ->
4087
+
Full(global,{|Declares a new predicate PredName in the data base Db.
4088
+
Indexing can be left unspecified. Spec gathers a mode and a
4089
+
type for each argument. CAVEAT: types and indexing are strings
4090
+
instead of proper data types; beware parsing errors are fatal.
4091
+
Supported attributes:
4092
+
- @local! (default: false, discard at the end of section or module)
0 commit comments