aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/translation/php/primitive.jvm.lux
diff options
context:
space:
mode:
authorEduardo Julian2018-05-01 00:40:01 -0400
committerEduardo Julian2018-05-01 00:40:01 -0400
commit4b7d81c1e0449adc031ece6299fe4d0a09f66347 (patch)
tree0e57526f8cc68b19e7714ccecce09f2ed367883a /new-luxc/source/luxc/lang/translation/php/primitive.jvm.lux
parentf8d6348b3fec0c55768ebcd8dba446949b8a4ef7 (diff)
- WIP: - Initial PHP back-end implementation [missing procedures].
Diffstat (limited to 'new-luxc/source/luxc/lang/translation/php/primitive.jvm.lux')
-rw-r--r--new-luxc/source/luxc/lang/translation/php/primitive.jvm.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/new-luxc/source/luxc/lang/translation/php/primitive.jvm.lux b/new-luxc/source/luxc/lang/translation/php/primitive.jvm.lux
index 61570143b..6fcd675ce 100644
--- a/new-luxc/source/luxc/lang/translation/php/primitive.jvm.lux
+++ b/new-luxc/source/luxc/lang/translation/php/primitive.jvm.lux
@@ -1,20 +1,20 @@
(.module:
lux
(lux [macro "meta/" Monad<Meta>])
- (luxc (lang (host ["_" php #+ CExpression]))))
+ (luxc (lang (host ["_" php #+ Computation]))))
(def: #export translate-bool
- (-> Bool (Meta CExpression))
+ (-> Bool (Meta Computation))
(|>> _.bool meta/wrap))
(def: #export translate-int
- (-> Int (Meta CExpression))
+ (-> Int (Meta Computation))
(|>> _.int meta/wrap))
(def: #export translate-frac
- (-> Frac (Meta CExpression))
+ (-> Frac (Meta Computation))
(|>> _.float meta/wrap))
(def: #export translate-text
- (-> Text (Meta CExpression))
+ (-> Text (Meta Computation))
(|>> _.string meta/wrap))