diff options
author | Eduardo Julian | 2019-09-07 20:02:14 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-09-07 20:02:14 -0400 |
commit | 5f494b497e79bcea1d3c64d663ca5435bbf8ca2d (patch) | |
tree | 2a7ac78ae896042039e1311a14948026cbe66585 /stdlib/source/lux/tool/compiler/default/evaluation.lux | |
parent | 747abe180b2669b6af5779dcf39ab5a8b6ed11ed (diff) |
Renamed "Statement" to "Directive".
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/tool/compiler/default/evaluation.lux | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/lux/tool/compiler/default/evaluation.lux b/stdlib/source/lux/tool/compiler/default/evaluation.lux index 36e5678db..b6bc6b46b 100644 --- a/stdlib/source/lux/tool/compiler/default/evaluation.lux +++ b/stdlib/source/lux/tool/compiler/default/evaluation.lux @@ -22,11 +22,11 @@ (-> Nat Type Code (Operation Any))) (def: #export (evaluator expander synthesis-state generation-state generate) - (All [anchor expression statement] + (All [anchor expression directive] (-> Expander synthesis.State+ - (generation.State+ anchor expression statement) - (generation.Phase anchor expression statement) + (generation.State+ anchor expression directive) + (generation.Phase anchor expression directive) Eval)) (let [analyze (analysisP.phase expander)] (function (eval count type exprC) |