fix all the cases, much white noise, array to list, string to sym stuff

This commit is contained in:
Torsten Ruger
2015-09-19 14:53:30 +03:00
parent 3b0b91f2fb
commit 21b652456d
78 changed files with 690 additions and 559 deletions

View File

@ -1,4 +1,5 @@
return 42
-- -- --
s(:list, [s(:return,
s(:int, 42))])
s(:expressions,
s(:return,
s(:int, 42)))

View File

@ -1,4 +1,5 @@
return "hello"
-- -- --
s(:list, [s(:return,
s(:string, "hello"))])
s(:expressions,
s(:return,
s(:string, "hello")))

View File

@ -1,4 +1,5 @@
return foo
-- -- --
s(:list, [s(:return,
s(:name, "foo"))])
s(:expressions,
s(:return,
s(:name, :foo)))