diff options
Diffstat (limited to 'stdlib/source/library/lux/control/parser/environment.lux')
-rw-r--r-- | stdlib/source/library/lux/control/parser/environment.lux | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/stdlib/source/library/lux/control/parser/environment.lux b/stdlib/source/library/lux/control/parser/environment.lux index 50e58078d..a844787f7 100644 --- a/stdlib/source/library/lux/control/parser/environment.lux +++ b/stdlib/source/library/lux/control/parser/environment.lux @@ -1,16 +1,16 @@ (.using - [library - [lux "*" - [control - ["[0]" try {"+" Try}] - ["[0]" exception {"+" exception:}]] - [data - ["[0]" product] - ["[0]" text - ["%" format {"+" format}]] - [collection - ["[0]" dictionary {"+" Dictionary}]]]]] - ["[0]" //]) + [library + [lux "*" + [control + ["[0]" try {"+" Try}] + ["[0]" exception {"+" exception:}]] + [data + ["[0]" product] + ["[0]" text + ["%" format {"+" format}]] + [collection + ["[0]" dictionary {"+" Dictionary}]]]]] + ["[0]" //]) (type: .public Property Text) @@ -20,7 +20,7 @@ (exception: .public (unknown_property [property Property]) (exception.report - ["Property" (%.text property)])) + "Property" (%.text property))) (type: .public (Parser a) (//.Parser Environment a)) |