fix basic types

This commit is contained in:
Torsten Ruger
2015-10-09 17:24:23 +03:00
parent 97cf5e5bea
commit ba7ecbfa7b
8 changed files with 21 additions and 28 deletions

View File

@ -1,4 +1,3 @@
FooBar
-- -- --
s(:expressions,
s(:module, "FooBar"))
s(:class_name, :FooBar)

View File

@ -1,4 +1,3 @@
foo
foo
-- -- --
s(:expressions,
s(:name, :foo))
s(:name, :foo)

View File

@ -1,4 +1,3 @@
foo_bar
foo_bar
-- -- --
s(:expressions,
s(:name, :foo_bar))
s(:name, :foo_bar)

View File

@ -1,4 +1,3 @@
_bar
_bar
-- -- --
s(:expressions,
s(:name, :_bar))
s(:name, :_bar)

View File

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

View File

@ -1,4 +1,2 @@
"hello"
-- -- --
s(:expressions,
s(:string, "hello"))
"hello"-- -- --
s(:string, "hello")

View File

@ -1,4 +1,2 @@
"hello \nyou"
-- -- --
s(:expressions,
s(:string, "hello \\nyou"))
"hello \nyou"-- -- --
s(:string, "hello \\nyou")