aboutsummaryrefslogtreecommitdiff
path: root/lux-php/source
diff options
context:
space:
mode:
authorEduardo Julian2022-06-26 02:57:13 -0400
committerEduardo Julian2022-06-26 02:57:13 -0400
commit716ca5377386ca87eded7dd514ccc17f8ed281c3 (patch)
tree30ecd03de0f32057d453ab2c342fd17f88732ae3 /lux-php/source
parentcfdc546e6834ceeb78cb692d17fd5c60695be982 (diff)
De-sigil-ification: suffix : [Part 16]
Diffstat (limited to 'lux-php/source')
-rw-r--r--lux-php/source/program.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/lux-php/source/program.lux b/lux-php/source/program.lux
index 6dd73842c..88ac83d11 100644
--- a/lux-php/source/program.lux
+++ b/lux-php/source/program.lux
@@ -9,7 +9,7 @@
["[0]" pipe]
["[0]" maybe]
["[0]" try (.only Try)]
- ["[0]" exception (.only exception:)]
+ ["[0]" exception (.only exception)]
["[0]" io (.only IO io)]
[concurrency
["[0]" promise (.only Promise)]]]
@@ -180,7 +180,7 @@
(type Reader
(-> java/lang/Object (Try Any)))
-(exception: (unknown_kind_of_object [object java/lang/Object])
+(exception (unknown_kind_of_object [object java/lang/Object])
(exception.report
"Class" (java/lang/Object::toString (java/lang/Object::getClass object))
"Object" (java/lang/Object::toString object)))
@@ -372,7 +372,7 @@
_
(exception.throw ..unknown_kind_of_object host_object)))
-(exception: .public nulll_has_no_lux_representation)
+(exception .public nulll_has_no_lux_representation)
(def tuple_size_field
(php/runtime/memory/StringMemory::new runtime.tuple_size_field))
@@ -415,7 +415,7 @@
(exception.throw ..unknown_kind_of_object host_object)
)))
-(exception: (cannot_apply_a_non_function [object java/lang/Object])
+(exception (cannot_apply_a_non_function [object java/lang/Object])
(exception.report
"Class" (java/lang/Object::toString (java/lang/Object::getClass object))
"Non-function" (java/lang/Object::toString object)))