aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source
diff options
context:
space:
mode:
authorEduardo Julian2017-10-22 12:32:38 -0400
committerEduardo Julian2017-10-22 12:32:38 -0400
commit49f74e0ea7e9ef22ac7a189ff536a839d703ac5d (patch)
treecfb9547e257da37b70e20d0e0d4d50f24f760b3e /stdlib/source
parent0bc56fdc626ee601ca2c4ba0502f76e76d765fa0 (diff)
- Fixed some type-checking errors.
Diffstat (limited to 'stdlib/source')
-rw-r--r--stdlib/source/lux/meta/type/check.lux51
1 files changed, 31 insertions, 20 deletions
diff --git a/stdlib/source/lux/meta/type/check.lux b/stdlib/source/lux/meta/type/check.lux
index 920eb876c..0fa56b600 100644
--- a/stdlib/source/lux/meta/type/check.lux
+++ b/stdlib/source/lux/meta/type/check.lux
@@ -157,7 +157,7 @@
(-> Var (Check Bool))
(function [context]
(case (|> context (get@ #;var-bindings) (var::get id))
- (#;Some (#;Some _))
+ (#;Some (#;Some bound))
(#e;Success [context true])
(#;Some #;None)
@@ -166,6 +166,19 @@
#;None
(ex;throw Unknown-Type-Var (nat/encode id)))))
+(def: #export (concrete? id)
+ (-> Var (Check Bool))
+ (function [context]
+ (case (|> context (get@ #;var-bindings) (var::get id))
+ (#;Some (#;Some bound))
+ (#e;Success [context (case bound (#;Var _) false _ true)])
+
+ (#;Some #;None)
+ (#e;Success [context false])
+
+ #;None
+ (ex;throw Unknown-Type-Var (nat/encode id)))))
+
(def: #export (read id)
(-> Var (Check Type))
(function [context]
@@ -215,6 +228,13 @@
#;None
(ex;throw Unknown-Type-Var (nat/encode id)))))
+(def: #export (throw exception message)
+ (All [a] (-> ex;Exception Text (Check a)))
+ (function [context]
+ (ex;throw exception message)))
+
+(exception: #export Cannot-Clean-Unbound-Var)
+
(def: #export (clean t-id type)
(-> Var Type (Check Type))
(case type
@@ -224,27 +244,15 @@
[? (bound? id)]
(if ?
(read id)
- (wrap type)))
+ (throw Cannot-Clean-Unbound-Var (type;to-text type))))
(do Monad<Check>
- [? (bound? id)]
+ [? (concrete? id)]
(if ?
(do Monad<Check>
[=type (read id)
- ==type (clean t-id =type)]
- (case ==type
- (#;Var =id)
- (if (n.= t-id =id)
- (do Monad<Check>
- [_ (clear id)]
- (wrap type))
- (do Monad<Check>
- [_ (update ==type id)]
- (wrap type)))
-
- _
- (do Monad<Check>
- [_ (update ==type id)]
- (wrap type))))
+ ==type (clean t-id =type)
+ _ (update ==type id)]
+ (wrap type))
(wrap type))))
(#;Primitive name params)
@@ -355,7 +363,8 @@
(def: #export (delete id)
(-> Var (Check Unit))
(do Monad<Check>
- [?link (pre-link id)]
+ [_ (wrap [])
+ ?link (pre-link id)]
(case ?link
#;None
(delete' id)
@@ -363,7 +372,9 @@
(#;Some pre)
(do @
[post (read id)
- _ (update post pre)]
+ _ (if (type/= (#;Var pre) post)
+ (clear pre)
+ (update post pre))]
(delete' id)))))
(def: #export (with k)