aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/analysis/type.lux
diff options
context:
space:
mode:
authorEduardo Julian2017-11-29 22:49:56 -0400
committerEduardo Julian2017-11-29 22:49:56 -0400
commit4433c9bcd6c6cac44c018aad2e21a5b4d7cc4896 (patch)
tree0c166db6e01b41dfadd01801b5242967f2363b7d /new-luxc/source/luxc/lang/analysis/type.lux
parent77c113a3455cdbc4bb485a94f67f392480cdcfbf (diff)
- Adapted main codebase to the latest syntatic changes.
Diffstat (limited to '')
-rw-r--r--new-luxc/source/luxc/lang/analysis/type.lux18
1 files changed, 9 insertions, 9 deletions
diff --git a/new-luxc/source/luxc/lang/analysis/type.lux b/new-luxc/source/luxc/lang/analysis/type.lux
index f85608e19..c3296fd21 100644
--- a/new-luxc/source/luxc/lang/analysis/type.lux
+++ b/new-luxc/source/luxc/lang/analysis/type.lux
@@ -1,4 +1,4 @@
-(;module:
+(.module:
lux
(lux (control monad)
[macro]
@@ -10,18 +10,18 @@
## means of evaluating Lux expressions at compile-time for the sake of
## computing Lux type values.
(def: #export (analyse-check analyse eval type value)
- (-> &;Analyser &;Eval Code Code (Meta Analysis))
- (do macro;Monad<Meta>
+ (-> &.Analyser &.Eval Code Code (Meta Analysis))
+ (do macro.Monad<Meta>
[actualT (eval Type type)
#let [actualT (:! Type actualT)]
- _ (&;infer actualT)]
- (&;with-type actualT
+ _ (&.infer actualT)]
+ (&.with-type actualT
(analyse value))))
(def: #export (analyse-coerce analyse eval type value)
- (-> &;Analyser &;Eval Code Code (Meta Analysis))
- (do macro;Monad<Meta>
+ (-> &.Analyser &.Eval Code Code (Meta Analysis))
+ (do macro.Monad<Meta>
[actualT (eval Type type)
- _ (&;infer (:! Type actualT))]
- (&;with-type Top
+ _ (&.infer (:! Type actualT))]
+ (&.with-type Top
(analyse value))))