adds collect for the statements

This commit is contained in:
Torsten Ruger
2017-04-08 12:10:42 +03:00
parent 0fe5685ad4
commit 8942f42310
10 changed files with 85 additions and 1 deletions

View File

@ -6,5 +6,11 @@ module Vool
@name , @args , @body = name , args , (body || [])
end
def collect(arr)
@args.collect(arr)
@body.collect(arr)
super
end
end
end