aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/analysis/type.lux
diff options
context:
space:
mode:
Diffstat (limited to 'new-luxc/source/luxc/lang/analysis/type.lux')
-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))))