aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/meta.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/meta.lux')
-rw-r--r--stdlib/source/lux/meta.lux7
1 files changed, 1 insertions, 6 deletions
diff --git a/stdlib/source/lux/meta.lux b/stdlib/source/lux/meta.lux
index 8a7ae3b59..8cc4842e7 100644
--- a/stdlib/source/lux/meta.lux
+++ b/stdlib/source/lux/meta.lux
@@ -118,17 +118,12 @@
(#try.Success [compiler []])
(#try.Failure message))))
-(def: (with_location location error)
- (-> Location Text Text)
- ($_ text\compose (location.format location) text.new_line
- error))
-
(def: #export (fail error)
{#.doc "Fails with the given error message."}
(All [a]
(-> Text (Meta a)))
(function (_ state)
- (#try.Failure (..with_location (get@ #.location state) error))))
+ (#try.Failure (location.with (get@ #.location state) error))))
(def: #export (find_module name)
(-> Text (Meta Module))