diff options
author | Eduardo Julian | 2018-08-02 23:03:19 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-08-02 23:03:19 -0400 |
commit | 015134cd44e066e49b3bac56b442a6150c782600 (patch) | |
tree | 365056bf5bd62796b41e1e7eff9fcf0909cd430b /stdlib/source/lux/compiler/default/phase/synthesis.lux | |
parent | a4d56600054d833002a7793f98f192feb5d3f27b (diff) |
Moved statement phase into stdlib.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/compiler/default/phase/synthesis.lux | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/stdlib/source/lux/compiler/default/phase/synthesis.lux b/stdlib/source/lux/compiler/default/phase/synthesis.lux index 2ee018be4..29c2189c3 100644 --- a/stdlib/source/lux/compiler/default/phase/synthesis.lux +++ b/stdlib/source/lux/compiler/default/phase/synthesis.lux @@ -98,14 +98,16 @@ (#Control (Control Synthesis)) (#Extension (Extension Synthesis))) -(type: #export State+ - (extension.State ..State Analysis Synthesis)) - -(type: #export Operation - (extension.Operation ..State Analysis Synthesis)) - -(type: #export Phase - (extension.Phase ..State Analysis Synthesis)) +(do-template [<special> <general>] + [(type: #export <special> + (<general> ..State Analysis Synthesis))] + + [State+ extension.State] + [Operation extension.Operation] + [Phase extension.Phase] + [Handler extension.Handler] + [Bundle extension.Bundle] + ) (type: #export Path (Path' Synthesis)) |