aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/target/php.lux
diff options
context:
space:
mode:
authorEduardo Julian2022-04-09 00:46:03 -0400
committerEduardo Julian2022-04-09 00:46:03 -0400
commitf11afb9d2dfe2d59b41e8056eb8c4ae65268415f (patch)
treed7f57f5d62ddb58fceec0a827b0047ed70833841 /stdlib/source/library/lux/target/php.lux
parentab99de20a3d0566a71bf0ef607d9d6e291d7f62a (diff)
Re-branded "abstract" types as "primitive" types.
Diffstat (limited to 'stdlib/source/library/lux/target/php.lux')
-rw-r--r--stdlib/source/library/lux/target/php.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/library/lux/target/php.lux b/stdlib/source/library/lux/target/php.lux
index ef79be536..5a8d6faf2 100644
--- a/stdlib/source/library/lux/target/php.lux
+++ b/stdlib/source/library/lux/target/php.lux
@@ -24,7 +24,7 @@
["n" nat]
["f" frac]]]
[type
- [abstract "*"]]]])
+ [primitive "*"]]]])
(def: input_separator ", ")
(def: statement_suffix ";")
@@ -48,7 +48,7 @@
(-> Text Text)
(text.enclosed ["(" ")"]))
-(abstract: .public (Code brand)
+(primitive: .public (Code brand)
Text
(implementation: .public equivalence
@@ -73,7 +73,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]]
@@ -84,7 +84,7 @@
(template [<type> <super>+]
[(with_expansions [<brand> (template.symbol [<type> "'"])]
- (abstract: .public <brand> Any)
+ (primitive: .public <brand> Any)
(`` (type: .public <type> (|> <brand> (~~ (template.spliced <super>+))))))]
[Literal [Computation' Expression' Code]]