aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/translation/php/reference.jvm.lux
diff options
context:
space:
mode:
Diffstat (limited to 'new-luxc/source/luxc/lang/translation/php/reference.jvm.lux')
-rw-r--r--new-luxc/source/luxc/lang/translation/php/reference.jvm.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/new-luxc/source/luxc/lang/translation/php/reference.jvm.lux b/new-luxc/source/luxc/lang/translation/php/reference.jvm.lux
index 280710afc..9146684e4 100644
--- a/new-luxc/source/luxc/lang/translation/php/reference.jvm.lux
+++ b/new-luxc/source/luxc/lang/translation/php/reference.jvm.lux
@@ -5,31 +5,31 @@
text/format))
(luxc ["&" lang]
(lang [".L" variable #+ Variable Register]
- (host ["_" php #+ VExpression])))
+ (host ["_" php #+ Var])))
[//]
(// [".T" runtime]))
(do-template [<register> <prefix>]
[(def: #export <register>
- (-> Register VExpression)
+ (-> Register Var)
(|>> (:! Int) %i (format <prefix>) _.var))]
[closure "c"]
[variable "v"])
(def: #export (local var)
- (-> Variable VExpression)
+ (-> Variable Var)
(if (variableL.captured? var)
(closure (variableL.captured-register var))
(variable (:! Nat var))))
(def: #export global
- (-> Ident VExpression)
+ (-> Ident Var)
(|>> //.definition-name _.var))
(do-template [<name> <input> <converter>]
[(def: #export <name>
- (-> <input> (Meta VExpression))
+ (-> <input> (Meta Var))
(|>> <converter> (:: macro.Monad<Meta> wrap)))]
[translate-variable Variable local]