rubyx/lib/vool/function_statement.rb
2017-04-01 21:28:57 +03:00

6 lines
138 B
Ruby

module Vool
class FunctionStatement < Statement
attr_accessor :return_type , :name , :parameters, :statements , :receiver
end
end