diff options
author | Eduardo Julian | 2019-07-02 23:36:02 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-07-02 23:36:02 -0400 |
commit | 91c0619657bcf2ac520e7dd2912188f66bbe2157 (patch) | |
tree | f26675f263eb5f0285c1674b0777a7369248fe07 /stdlib/source/lux/tool/compiler/default/evaluation.lux | |
parent | 4f191540f831a7bba0e262b1a6b598f99fb9b35c (diff) |
Re-name "lux/data/error" to "lux/control/try".
Diffstat (limited to 'stdlib/source/lux/tool/compiler/default/evaluation.lux')
-rw-r--r-- | stdlib/source/lux/tool/compiler/default/evaluation.lux | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/stdlib/source/lux/tool/compiler/default/evaluation.lux b/stdlib/source/lux/tool/compiler/default/evaluation.lux index 72065a3c8..36e5678db 100644 --- a/stdlib/source/lux/tool/compiler/default/evaluation.lux +++ b/stdlib/source/lux/tool/compiler/default/evaluation.lux @@ -2,8 +2,9 @@ [lux #* [abstract [monad (#+ do)]] + [control + ["." try]] [data - ["." error] [text ["%" format (#+ format)]]]] [/// @@ -32,7 +33,7 @@ (do phase.monad [exprA (type.with-type type (analyze exprC))] - (phase.lift (do error.monad + (phase.lift (do try.monad [exprS (|> exprA synthesisP.phase (phase.run synthesis-state))] (phase.run generation-state (do phase.monad |