aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/target/php.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/target/php.lux')
-rw-r--r--stdlib/source/library/lux/target/php.lux58
1 files changed, 29 insertions, 29 deletions
diff --git a/stdlib/source/library/lux/target/php.lux b/stdlib/source/library/lux/target/php.lux
index f02eafd89..b23ac1b98 100644
--- a/stdlib/source/library/lux/target/php.lux
+++ b/stdlib/source/library/lux/target/php.lux
@@ -1,30 +1,30 @@
(.using
- [library
- [lux {"-" Location Code Global Label static int if cond or and not comment for try global}
- ["@" target]
- [abstract
- [equivalence {"+" Equivalence}]
- [hash {"+" Hash}]
- ["[0]" enum]]
- [control
- [pipe {"+" case> cond> new>}]
- [parser
- ["<[0]>" code]]]
- [data
- ["[0]" text
- ["%" format {"+" format}]]
- [collection
- ["[0]" list ("[1]#[0]" functor mix)]]]
- [macro
- [syntax {"+" syntax:}]
- ["[0]" template]
- ["[0]" code]]
- [math
- [number
- ["n" nat]
- ["f" frac]]]
- [type
- abstract]]])
+ [library
+ [lux {"-" Location Code Global Label static int if cond or and not comment for try global the}
+ ["@" target]
+ [abstract
+ [equivalence {"+" Equivalence}]
+ [hash {"+" Hash}]
+ ["[0]" enum]]
+ [control
+ [pipe {"+" case> cond> new>}]
+ [parser
+ ["<[0]>" code]]]
+ [data
+ ["[0]" text
+ ["%" format {"+" format}]]
+ [collection
+ ["[0]" list ("[1]#[0]" functor mix)]]]
+ [macro
+ [syntax {"+" syntax:}]
+ ["[0]" template]
+ ["[0]" code]]
+ [math
+ [number
+ ["n" nat]
+ ["f" frac]]]
+ [type
+ abstract]]])
(def: input_separator ", ")
(def: statement_suffix ";")
@@ -486,10 +486,10 @@
(def: (catch except)
(-> Except Text)
- (let [declaration (format (:representation (value@ #class except))
- " " (:representation (value@ #exception except)))]
+ (let [declaration (format (:representation (.the #class except))
+ " " (:representation (.the #exception except)))]
(format "catch" (..group declaration) " "
- (..block (:representation (value@ #handler except))))))
+ (..block (:representation (.the #handler except))))))
(def: .public (try body! excepts)
(-> Statement (List Except) Statement)