add a ruby method

including source ast and args, later locals
This commit is contained in:
Torsten Ruger 2016-12-20 20:02:20 +02:00
parent 9e89306733
commit a70d20d63e

View File

@ -0,0 +1,12 @@
module Melon
class RubyMethod
attr_reader :name , :args_type , :body
def initialize(name , args_type , body )
@name , @args_type , @body = name , args_type , body
end
end
end