aboutsummaryrefslogtreecommitdiff
path: root/lux-mode
diff options
context:
space:
mode:
authorEduardo Julian2019-06-18 23:19:23 -0400
committerEduardo Julian2019-06-18 23:19:23 -0400
commit75e6f7ad181d398b818367fdc5e86b1542d1bc0a (patch)
treed0ea084f2d9f35876d4ab383d3830445588ee323 /lux-mode
parent4bf2dce01f51a5b0be76a587f877d1227c3982ae (diff)
Implemented "hole" typing.
Diffstat (limited to 'lux-mode')
-rw-r--r--lux-mode/lux-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lux-mode/lux-mode.el b/lux-mode/lux-mode.el
index 09ab08da5..8f66e2717 100644
--- a/lux-mode/lux-mode.el
+++ b/lux-mode/lux-mode.el
@@ -245,7 +245,7 @@ Called by `imenu--generic-function'."
(control//contract (altRE "pre" "post"))
;; Type
(type//syntax (altRE "|" "&" "->" "All" "Ex" "Rec" "primitive" "\\$" "type"))
- (type//checking (altRE ":" ":coerce" ":~" ":assume" ":of" ":cast" ":share" ":by-example"))
+ (type//checking (altRE ":" ":coerce" ":~" ":assume" ":of" ":cast" ":share" ":by-example" ":hole"))
(type//abstract (altRE "abstract:" ":abstraction" ":representation" ":transmutation" "\\^:representation"))
(type//unit (altRE "unit:" "scale:"))
(type//poly (altRE "poly:" "derived:"))