Skip to content

Remove float32 constant case from Asttypes #2279

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

Merged
merged 1 commit into from
Feb 13, 2024
Merged
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: 2 additions & 1 deletion ocaml/parsing/asttypes.mli
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,13 @@
Don't add new types to this file; add them to [jane_asttypes.mli] instead.
This file is considered part of the parse tree, which we can't modify. *)

(* Do not add to this type; it is no longer used in the compiler but is
required by ppxlib. *)
type constant =
Const_int of int
| Const_char of char
| Const_string of string * Location.t * string option
| Const_float of string
| Const_float32 of string
| Const_int32 of int32
| Const_int64 of int64
| Const_nativeint of nativeint
Expand Down