fix array and hash constants, now seperated out
This commit is contained in:
@ -1,7 +1,6 @@
|
||||
{ foo => 33 }
|
||||
-- -- --
|
||||
s(:expressions,
|
||||
s(:hash,
|
||||
s(:assoc,
|
||||
s(:name, :foo),
|
||||
s(:int, 33))))
|
||||
s(:hash,
|
||||
s(:assoc,
|
||||
s(:name, :foo),
|
||||
s(:int, 33)))
|
||||
|
@ -1,7 +1,6 @@
|
||||
{ foo => true }
|
||||
-- -- --
|
||||
s(:expressions,
|
||||
s(:hash,
|
||||
s(:assoc,
|
||||
s(:name, :foo),
|
||||
s(:true))))
|
||||
s(:hash,
|
||||
s(:assoc,
|
||||
s(:name, :foo),
|
||||
s(:true)))
|
||||
|
@ -1,10 +1,9 @@
|
||||
{foo => 33 , bar => 42}
|
||||
-- -- --
|
||||
s(:expressions,
|
||||
s(:hash,
|
||||
s(:assoc,
|
||||
s(:name, :foo),
|
||||
s(:int, 33)),
|
||||
s(:assoc,
|
||||
s(:name, :bar),
|
||||
s(:int, 42))))
|
||||
s(:hash,
|
||||
s(:assoc,
|
||||
s(:name, :foo),
|
||||
s(:int, 33)),
|
||||
s(:assoc,
|
||||
s(:name, :bar),
|
||||
s(:int, 42)))
|
||||
|
Reference in New Issue
Block a user