renameing to match expressions

This commit is contained in:
Torsten Ruger
2015-10-09 17:21:15 +03:00
parent 85adfa7107
commit f7dcf2a2ff
46 changed files with 0 additions and 30 deletions

View File

@ -0,0 +1,5 @@
return 42
-- -- --
s(:expressions,
s(:return,
s(:int, 42)))

View File

@ -0,0 +1,5 @@
return "hello"
-- -- --
s(:expressions,
s(:return,
s(:string, "hello")))

View File

@ -0,0 +1,5 @@
return foo
-- -- --
s(:expressions,
s(:return,
s(:name, :foo)))