Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 5668 - start reorg to permit syntax sugar in layers | Kartik Agaram | 2019-09-19 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | | | | | Right now we always build the library before any apps. Apps are where our syntax sugar translators (sigils, calls, braces) live. So we can't use sugar in the standard library. New idea: move all code for SubX phases into the top-level. Perhaps we should also just build a single file rather than pipeline stages. But for now we'll build each phase by building up to some specific layer. This will simplify test_apps and move lots of one-off logic to a more standard form in test_layers. I'm also going to reorg existing layers so that we introduce each phase at a point where it mostly only gets the helpers it needs. This commit itself is just cleaning up some common strings. Using explicit names for them streamlines binaries a bit. | ||||
* | 5661 | Kartik Agaram | 2019-09-15 | 1 | -1/+1 |
| | |||||
* | 5607 | Kartik Agaram | 2019-09-01 | 1 | -3/+3 |
| | |||||
* | 5600 | Kartik Agaram | 2019-08-31 | 1 | -8/+11 |
| | |||||
* | 5592 - switch register names to lowercase | Kartik Agaram | 2019-08-26 | 1 | -1443/+1443 |
| | |||||
* | 5589 | Kartik Agaram | 2019-08-25 | 1 | -1/+1 |
| | |||||
* | Merge branch 'master' into desugar | Kartik Agaram | 2019-07-31 | 1 | -1/+1 |
|\ | |||||
| * | 5499 | Kartik Agaram | 2019-07-31 | 1 | -1/+1 |
| | | |||||
* | | desugar: clean up top-level `convert` | Kartik Agaram | 2019-07-31 | 1 | -1/+1 |
|/ | | | | | | | | | Model it on `dquotes` rather than `pack`, since it needs almost zero state across words. Manual testing: $ echo 'ab %eax' |subx run apps/desugar ab 0 | ||||
* | 5485 - promote SubX to top-level | Kartik Agaram | 2019-07-27 | 1 | -0/+5986 |