6 lines
138 B
Ruby
6 lines
138 B
Ruby
|
module Vool
|
||
|
class FunctionStatement < Statement
|
||
|
attr_accessor :return_type , :name , :parameters, :statements , :receiver
|
||
|
end
|
||
|
end
|