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,3 +1,4 @@
FooBar
-- -- --
s(:list, [s(:module, "FooBar")])
s(:expressions,
s(:module, "FooBar"))

View File

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

View File

@ -1,3 +1,4 @@
foo_bar
-- -- --
s(:list, [s(:name, "foo_bar")])
s(:expressions,
s(:name, :foo_bar))

View File

@ -1,3 +1,4 @@
_bar
-- -- --
s(:list, [s(:name, "_bar")])
s(:expressions,
s(:name, :_bar))

View File

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

View File

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

View File

@ -1,3 +1,4 @@
"hello \nyou"
-- -- --
s(:list, [s(:string, "hello \\nyou")])
s(:expressions,
s(:string, "hello \\nyou"))