diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-08-31 20:43:41 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-08-31 20:43:41 -0700 |
commit | e97b446ac3023d39d190911074850e686aa5f3aa (patch) | |
tree | 6d32495cf8c6179de27d334dcc3710b2fc0ea283 /test_apps | |
parent | a21fb73d0421960a8a0b746827455b650346978b (diff) | |
download | mu-e97b446ac3023d39d190911074850e686aa5f3aa.tar.gz |
5594 - rename 'desugar' to 'sigils'
There's going to be multiple forms of syntax sugar going forward.
Diffstat (limited to 'test_apps')
-rwxr-xr-x | test_apps | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test_apps b/test_apps index ed7350e4..3cc3de79 100755 --- a/test_apps +++ b/test_apps @@ -297,13 +297,13 @@ test $NATIVE && { # Higher-level syntax. -echo desugar -./subx translate 0*.subx apps/subx-common.subx apps/desugar.subx -o apps/desugar -[ "$1" != record ] && git diff --exit-code apps/desugar -./subx run apps/desugar test +echo sigils +./subx translate 0*.subx apps/subx-common.subx apps/sigils.subx -o apps/sigils +[ "$1" != record ] && git diff --exit-code apps/sigils +./subx run apps/sigils test echo test `uname` = 'Linux' && { - apps/desugar test + apps/sigils test echo } @@ -333,7 +333,7 @@ done # Phases of the self-hosted SubX translator. -for app in hex survey pack assort dquotes tests desugar +for app in hex survey pack assort dquotes tests sigils do echo $app ./ntranslate 0*.subx apps/subx-common.subx apps/$app.subx |