diff options
author | David Robillard <d@drobilla.net> | 2010-04-13 02:28:56 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-04-13 02:28:56 +0000 |
commit | 8675beae4f7a8415fc2e88451da95dc068719194 (patch) | |
tree | 599de9b6730a14035a25f7d9e0467f96866185ed /test.sh | |
parent | 1f988f420ba3827941886962680f3e2ad6f01740 (diff) | |
download | resp-8675beae4f7a8415fc2e88451da95dc068719194.tar.gz resp-8675beae4f7a8415fc2e88451da95dc068719194.tar.bz2 resp-8675beae4f7a8415fc2e88451da95dc068719194.zip |
Restructure as a source translation based compiler.
Implement support for closures (via lambda lifting phase).
git-svn-id: http://svn.drobilla.net/resp/resp@254 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'test.sh')
-rwxr-xr-x | test.sh | 16 |
1 files changed, 10 insertions, 6 deletions
@@ -13,9 +13,13 @@ run() { fi } -run './test/ack.resp' '8189 : Int' -run './test/def.resp' '3 : Int' -run './test/fac.resp' '720 : Int' -run './test/poly.resp' '#t : Bool' -run './test/nest.resp' '6 : Int' -run './test/tup.resp' '5 : Int' +run './test/ack.resp' '8189 : Int' +run './test/closure.resp' '6 : Int' +run './test/def.resp' '4 : Int' +run './test/deffn.resp' '3 : Int' +run './test/fac.resp' '720 : Int' +run './test/inlinefn.resp' '2 : Int' +run './test/nest.resp' '8 : Int' +run './test/tup.resp' '5 : Int' + +#run './test/poly.resp' '#t : Bool' |