aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/macro/syntax/common/reader.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/macro/syntax/common/reader.lux')
-rw-r--r--stdlib/source/lux/macro/syntax/common/reader.lux11
1 files changed, 0 insertions, 11 deletions
diff --git a/stdlib/source/lux/macro/syntax/common/reader.lux b/stdlib/source/lux/macro/syntax/common/reader.lux
index 98e1165a5..5a683ed3c 100644
--- a/stdlib/source/lux/macro/syntax/common/reader.lux
+++ b/stdlib/source/lux/macro/syntax/common/reader.lux
@@ -14,17 +14,6 @@
["." meta]]
["." //])
-(def: #export declaration
- {#.doc (doc "A reader for declaration syntax."
- "Such as:"
- quux
- (foo bar baz))}
- (Parser //.Declaration)
- (p.either (p.and s.local_identifier
- (p\wrap (list)))
- (s.form (p.and s.local_identifier
- (p.some s.local_identifier)))))
-
(def: #export annotations
{#.doc "Reader for the common annotations syntax used by def: statements."}
(Parser //.Annotations)