diff options
Diffstat (limited to 'stdlib/source/library/lux/tool/compiler/phase.lux')
-rw-r--r-- | stdlib/source/library/lux/tool/compiler/phase.lux | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/stdlib/source/library/lux/tool/compiler/phase.lux b/stdlib/source/library/lux/tool/compiler/phase.lux index b80e262c4..80dfdb208 100644 --- a/stdlib/source/library/lux/tool/compiler/phase.lux +++ b/stdlib/source/library/lux/tool/compiler/phase.lux @@ -1,28 +1,28 @@ (.module: [library - [lux #* + [lux "*" ["." debug] [abstract - [monad (#+ Monad do)]] + [monad {"+" [Monad do]}]] [control ["." state] - ["." try (#+ Try) ("#\." functor)] - ["ex" exception (#+ Exception exception:)] + ["." try {"+" [Try]} ("#\." functor)] + ["ex" exception {"+" [Exception exception:]}] ["." io] [parser ["<.>" code]]] [data ["." product] ["." text - ["%" format (#+ format)]]] + ["%" format {"+" [format]}]]] [time ["." instant] ["." duration]] [macro - [syntax (#+ syntax:)]]]] + [syntax {"+" [syntax:]}]]]] [// [meta - [archive (#+ Archive)]]]) + [archive {"+" [Archive]}]]]) (type: .public (Operation s o) (state.+State Try s o)) |