aboutsummaryrefslogtreecommitdiffhomepage
path: root/intf/decl_kinds.mli
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2016-09-20 17:13:27 +0200
committerGravatar Maxime Dénès <mail@maximedenes.fr>2016-09-20 17:18:37 +0200
commit1bc1cba7a759a285131a3ed6ea8979716700b856 (patch)
tree25202d41487d954621fb4bc42affd75bbae662cb /intf/decl_kinds.mli
parentaa29c92dfa395e2f369e81bd72cef482cdf90c65 (diff)
Rename Decl_kinds.binding_kind into Decls_kind.implicit_status.
The new name makes it more obvious what is meant here by "kind". We leave Decl_kinds.binding_kind as a deprecated alias for plugin compatibility. We also replace bool with implicit_status in a few places in the codebase.
Diffstat (limited to 'intf/decl_kinds.mli')
-rw-r--r--intf/decl_kinds.mli5
1 files changed, 4 insertions, 1 deletions
diff --git a/intf/decl_kinds.mli b/intf/decl_kinds.mli
index 29972f2f4..c117baf3f 100644
--- a/intf/decl_kinds.mli
+++ b/intf/decl_kinds.mli
@@ -10,7 +10,10 @@
type locality = Discharge | Local | Global
-type binding_kind = Explicit | Implicit
+type implicit_status = Explicit | Implicit
+
+type binding_kind = implicit_status
+(** @deprecated Alias type *)
type polymorphic = bool