rubyx/lib/vool/function_statement.rb

6 lines
138 B
Ruby
Raw Normal View History

2017-04-01 20:28:57 +02:00
module Vool
class FunctionStatement < Statement
attr_accessor :return_type , :name , :parameters, :statements , :receiver
end
end