Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adapt to https://github.com/coq/coq/pull/14928 #366

Merged
merged 1 commit into from
Nov 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions serlib/ser_constrexpr.ml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,9 @@ type explicit_flag = [%import: Constrexpr.explicit_flag]
(* type sign = [%import: Constrexpr.sign]
* [@@deriving sexp,yojson] *)

type delimiter_depth = [%import: Constrexpr.delimiter_depth]
[@@deriving sexp,yojson,hash,compare]

type prim_token = [%import: Constrexpr.prim_token]
[@@deriving sexp,yojson,hash,compare]

Expand Down
3 changes: 3 additions & 0 deletions serlib/ser_constrexpr.mli
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ val sexp_of_binder_kind : binder_kind -> Sexp.t
* val proj_flag_of_sexp : Sexp.t -> proj_flag
* val sexp_of_proj_flag : proj_flag -> Sexp.t *)

type delimiter_depth = [%import: Constrexpr.delimiter_depth]
[@@deriving sexp,yojson,hash,compare]

type prim_token = Constrexpr.prim_token

val prim_token_of_sexp : Sexp.t -> prim_token
Expand Down
3 changes: 3 additions & 0 deletions serlib/ser_vernacexpr.ml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ type goal_identifier = [%import: Vernacexpr.goal_identifier]
type scope_name = [%import: Vernacexpr.scope_name]
[@@deriving sexp,yojson,hash,compare]

type scope_delimiter = [%import: Vernacexpr.scope_delimiter]
[@@deriving sexp,yojson,hash,compare]

type goal_reference =
[%import: Vernacexpr.goal_reference]
[@@deriving sexp,yojson,hash,compare]
Expand Down
4 changes: 4 additions & 0 deletions serlib/ser_vernacexpr.mli
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ type scope_name =
[%import: Vernacexpr.scope_name]
[@@deriving sexp,yojson]

type scope_delimiter =
[%import: Vernacexpr.scope_delimiter]
[@@deriving sexp,yojson]

type notation_format =
[%import: Vernacexpr.notation_format]
[@@deriving sexp,yojson]
Expand Down
Loading