Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 5668 - start reorg to permit syntax sugar in layers | Kartik Agaram | 2019-09-19 | 1 | -0/+0 |
| | | | | | | | | | | | | | | | | | | | 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. | ||||
* | 5647 - experimental support for swapping OS | Kartik Agaram | 2019-09-11 | 1 | -0/+0 |
| | |||||
* | 5630 | Kartik Agaram | 2019-09-06 | 1 | -0/+0 |
| | |||||
* | 5623 | Kartik Agaram | 2019-09-04 | 1 | -0/+0 |
| | |||||
* | 5616 | Kartik Agaram | 2019-09-04 | 1 | -0/+0 |
| | |||||
* | 5615 - long strings in self-hosted translator | Kartik Agaram | 2019-09-04 | 1 | -0/+0 |
| | | | | | | My SubX translator phases assume lines are never longer than 512 bytes. However, dquotes.subx was generating lines longer than that by blowing up string literals by 4-5x. | ||||
* | 5608 - write int to stream | Kartik Agaram | 2019-09-02 | 1 | -0/+0 |
| | |||||
* | 5600 | Kartik Agaram | 2019-08-31 | 1 | -0/+0 |
| | |||||
* | 5591 | Kartik Agaram | 2019-08-26 | 1 | -0/+0 |
| | |||||
* | 5586 - bugfix: no desugar inside string literals | Kartik Agaram | 2019-08-25 | 1 | -0/+0 |
| | |||||
* | build out all variants for skipping whitespace | Kartik Agaram | 2019-08-24 | 1 | -0/+0 |
| | | | | skip {whitespace, non-whitespace} x {from stream, from slice} | ||||
* | done implementing all variants of 'get' | Kartik Agaram | 2019-08-13 | 1 | -0/+0 |
| | |||||
* | done with get-or-stop | Kartik Agaram | 2019-08-13 | 1 | -0/+0 |
| | |||||
* | half-done testing get-or-stop | Kartik Agaram | 2019-08-13 | 1 | -0/+0 |
| | | | | | | Probably not needed for desugar; I'm just working through what we may replace the calls to 'get-slice' with if and when we decide to start focusing error messages and so writing tests for them. | ||||
* | standardize test input/output/error streams | Kartik Agaram | 2019-08-13 | 1 | -0/+0 |
| | |||||
* | . | Kartik Agaram | 2019-08-13 | 1 | -0/+0 |
| | |||||
* | . | Kartik Agaram | 2019-08-13 | 1 | -0/+0 |
| | |||||
* | new variant: maybe-get-slice | Kartik Agaram | 2019-08-13 | 1 | -0/+0 |
| | |||||
* | new variant: maybe-get returns null on failure | Kartik Agaram | 2019-08-12 | 1 | -0/+0 |
| | |||||
* | better error message when get aborts | Kartik Agaram | 2019-08-12 | 1 | -0/+0 |
| | |||||
* | 5485 - promote SubX to top-level | Kartik Agaram | 2019-07-27 | 1 | -0/+0 |