diff options
Diffstat (limited to '')
| -rw-r--r-- | lux-php/source/program.lux | 34 | 
1 files changed, 17 insertions, 17 deletions
| diff --git a/lux-php/source/program.lux b/lux-php/source/program.lux index 456a6df4a..7aa88558d 100644 --- a/lux-php/source/program.lux +++ b/lux-php/source/program.lux @@ -1,29 +1,29 @@  (.module:    [lux "*" -   [program {"+" [program:]}] +   [program {"+" program:}]     ["[0]" ffi]     ["[0]" debug]     [abstract -    ["[0]" monad {"+" [do]}]] +    ["[0]" monad {"+" do}]]     [control -    [pipe {"+" [exec> case>]}] +    [pipe {"+" exec> case>}]      ["[0]" maybe] -    ["[0]" try {"+" [Try]}] -    ["[0]" exception {"+" [exception:]}] -    ["[0]" io {"+" [IO io]}] +    ["[0]" try {"+" Try}] +    ["[0]" exception {"+" exception:}] +    ["[0]" io {"+" IO io}]      [concurrency -     ["[0]" promise {"+" [Promise]}]]] +     ["[0]" promise {"+" Promise}]]]     [data      ["[0]" text ("[1]#[0]" hash) -     ["%" format {"+" [format]}] +     ["%" format {"+" format}]       [encoding        ["[0]" utf8]]]      [collection -     ["[0]" array {"+" [Array]}]]] +     ["[0]" array {"+" Array}]]]     [macro      ["[0]" template]]     [math -    [number {"+" [hex]} +    [number {"+" hex}       ["n" nat]       ["[0]" i64]]]     ["[0]" world "_" @@ -33,18 +33,18 @@      ["_" php]]     [tool      [compiler -     [phase {"+" [Operation Phase]}] +     [phase {"+" Operation Phase}]       [reference -      [variable {"+" [Register]}]] +      [variable {"+" Register}]]       [language        [lux -       [program {"+" [Program]}] -       [generation {"+" [Context Host]}] +       [program {"+" Program}] +       [generation {"+" Context Host}]         ["[0]" synthesis]         [analysis -        [macro {"+" [Expander]}]] +        [macro {"+" Expander}]]         [phase -        ["[0]" extension {"+" [Extender Handler]} +        ["[0]" extension {"+" Extender Handler}           ["[1]/[0]" bundle]           ["[0]" analysis "_"            ["[1]" php]] @@ -55,7 +55,7 @@           ["[0]" php            ["[0]" runtime]]]]]]       [default -      ["[0]" platform {"+" [Platform]}]] +      ["[0]" platform {"+" Platform}]]       [meta        ["[0]" packager "_"         ["[1]" script]]]]]] | 
