adds method_statement to vool

This commit is contained in:
Torsten Ruger
2017-04-01 16:27:32 +03:00
parent 295782d9e6
commit 34fdf7b2cd
7 changed files with 55 additions and 1 deletions

View File

@ -3,7 +3,7 @@ module Vool
attr_reader :name, :super_class_name , :body
def initialize( name , supe , body)
@name , @super_class_name , @body = name , supe , body
@name , @super_class_name , @body = name , supe , (body || [])
end
end