aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/target/ruby.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/target/ruby.lux12
1 files changed, 5 insertions, 7 deletions
diff --git a/stdlib/source/lux/target/ruby.lux b/stdlib/source/lux/target/ruby.lux
index 9a0617204..9ac60c6c0 100644
--- a/stdlib/source/lux/target/ruby.lux
+++ b/stdlib/source/lux/target/ruby.lux
@@ -23,8 +23,6 @@
(text.replace-all text.new-line (format text.new-line text.tab))))
(abstract: #export (Code brand)
- {}
-
Text
(def: #export manual
@@ -37,7 +35,7 @@
(template [<type> <super>]
[(with-expansions [<brand> (template.identifier [<type> "'"])]
- (`` (abstract: #export (<brand> brand) {} Any))
+ (`` (abstract: #export (<brand> brand) Any))
(`` (type: #export (<type> brand)
(<super> (<brand> brand)))))]
@@ -50,7 +48,7 @@
(template [<type> <super>]
[(with-expansions [<brand> (template.identifier [<type> "'"])]
- (`` (abstract: #export <brand> {} Any))
+ (`` (abstract: #export <brand> Any))
(`` (type: #export <type> (<super> <brand>))))]
[Literal Computation]
@@ -58,7 +56,7 @@
)
(template [<var> <brand> <prefix> <constructor>]
- [(abstract: #export <brand> {} Any)
+ [(abstract: #export <brand> Any)
(type: #export <var> (Var <brand>))
@@ -71,7 +69,7 @@
[SVar Static "@@" static]
)
- (abstract: #export (Local brand) {} Any)
+ (abstract: #export (Local brand) Any)
(type: #export LVar (Var (Local Any)))
(def: #export local
@@ -79,7 +77,7 @@
(|>> :abstraction))
(template [<var> <brand> <prefix> <modifier> <unpacker>]
- [(abstract: #export <brand> {} Any)
+ [(abstract: #export <brand> Any)
(type: #export <var> (Var (Local <brand>)))