aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/target/js.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/target/js.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/library/lux/target/js.lux b/stdlib/source/library/lux/target/js.lux
index 5d24ab3d7..c0c178bc1 100644
--- a/stdlib/source/library/lux/target/js.lux
+++ b/stdlib/source/library/lux/target/js.lux
@@ -15,7 +15,7 @@
["i" int]
["f" frac]]]
[type
- [abstract "*"]]]])
+ [primitive "*"]]]])
(def: expression
(text.enclosed ["(" ")"]))
@@ -33,7 +33,7 @@
(|>> (format \n+)
(text.replaced text.new_line (format text.new_line text.tab))))
-(abstract: .public (Code brand)
+(primitive: .public (Code brand)
Text
(def: .public code
@@ -42,7 +42,7 @@
(template [<type> <super>+]
[(with_expansions [<brand> (template.symbol [<type> "'"])]
- (abstract: (<brand> brand) Any)
+ (primitive: (<brand> brand) Any)
(`` (type: .public <type> (|> Any <brand> (~~ (template.spliced <super>+))))))]
[Expression [Code]]
@@ -53,7 +53,7 @@
(template [<type> <super>+]
[(with_expansions [<brand> (template.symbol [<type> "'"])]
- (abstract: <brand> Any)
+ (primitive: <brand> Any)
(`` (type: .public <type> (|> <brand> (~~ (template.spliced <super>+))))))]
[Var [Location' Computation' Expression' Code]]