vool method fix

This commit is contained in:
Torsten Ruger
2017-04-06 14:02:18 +03:00
parent 488af5b8f7
commit 3683aa8976
2 changed files with 13 additions and 11 deletions

View File

@ -19,7 +19,7 @@ module Vool
def on_def( statement )
name , args , body = *statement
arg_array = process_all( args )
MethodStatement.new( name , arg_array , body )
MethodStatement.new( name , arg_array , process(body) )
end
def on_arg( arg )