fix method to_vool

This commit is contained in:
Torsten Ruger
2018-07-19 21:36:28 +03:00
parent 7b4a0126f7
commit 238f09b5ad
2 changed files with 22 additions and 7 deletions

View File

@ -9,7 +9,7 @@ module Ruby
end
def to_vool
MethodStatement.new( @name , @args , @body.normalize)
Vool::MethodStatement.new( @name , @args.dup , @body.to_vool)
end
def to_s(depth = 0)