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
+1 -2
View File
@@ -1,4 +1,3 @@
FooBar
-- -- --
s(:expressions,
s(:module, "FooBar"))
s(:class_name, :FooBar)
+2 -3
View File
@@ -1,4 +1,3 @@
foo
foo
-- -- --
s(:expressions,
s(:name, :foo))
s(:name, :foo)
@@ -1,4 +1,3 @@
foo_bar
foo_bar
-- -- --
s(:expressions,
s(:name, :foo_bar))
s(:name, :foo_bar)
@@ -1,4 +1,3 @@
_bar
_bar
-- -- --
s(:expressions,
s(:name, :_bar))
s(:name, :_bar)
+2 -3
View File
@@ -1,4 +1,3 @@
42
42
-- -- --
s(:expressions,
s(:int, 42))
s(:int, 42)
+2 -4
View File
@@ -1,4 +1,2 @@
"hello"
-- -- --
s(:expressions,
s(:string, "hello"))
"hello"-- -- --
s(:string, "hello")
+2 -4
View File
@@ -1,4 +1,2 @@
"hello \nyou"
-- -- --
s(:expressions,
s(:string, "hello \\nyou"))
"hello \nyou"-- -- --
s(:string, "hello \\nyou")