aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/meta/location.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/meta/location.lux')
-rw-r--r--stdlib/source/library/lux/meta/location.lux14
1 files changed, 7 insertions, 7 deletions
diff --git a/stdlib/source/library/lux/meta/location.lux b/stdlib/source/library/lux/meta/location.lux
index 0c089da36..24511eb26 100644
--- a/stdlib/source/library/lux/meta/location.lux
+++ b/stdlib/source/library/lux/meta/location.lux
@@ -8,9 +8,9 @@
(Equivalence Location)
(def: (= reference subject)
- (and ("lux text =" (get@ #.module reference) (get@ #.module subject))
- ("lux i64 =" (get@ #.line reference) (get@ #.line subject))
- ("lux i64 =" (get@ #.column reference) (get@ #.column subject)))))
+ (and ("lux text =" (value@ #.module reference) (value@ #.module subject))
+ ("lux i64 =" (value@ #.line reference) (value@ #.line subject))
+ ("lux i64 =" (value@ #.column reference) (value@ #.column subject)))))
(def: .public dummy
Location
@@ -23,12 +23,12 @@
(here))}
(case tokens
#.End
- (let [location (get@ #.location compiler)]
+ (let [location (value@ #.location compiler)]
(#.Right [compiler
(list (` (.: .Location
- [(~ [..dummy (#.Text (get@ #.module location))])
- (~ [..dummy (#.Nat (get@ #.line location))])
- (~ [..dummy (#.Nat (get@ #.column location))])])))]))
+ [(~ [..dummy (#.Text (value@ #.module location))])
+ (~ [..dummy (#.Nat (value@ #.line location))])
+ (~ [..dummy (#.Nat (value@ #.column location))])])))]))
_
(#.Left (`` (("lux in-module" (~~ (static .prelude_module)) wrong_syntax_error) (name_of ..here))))))