soml-parser/lib/soml/code/function_statement.rb
2016-03-06 14:07:25 +02:00

6 lines
138 B
Ruby

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