30 lines
930 B
Ruby
30 lines
930 B
Ruby
module Vool
|
|
|
|
class VoolMethod
|
|
|
|
attr_reader :name , :args_type , :locals_type , :source
|
|
|
|
def initialize(name , args_type , locals_type , source )
|
|
@name , @args_type , @locals_type , @source = name , args_type, locals_type , source
|
|
raise "Name must be symbol" unless name.is_a?(Symbol)
|
|
raise "args_type must be type" unless args_type.is_a?(Parfait::Type)
|
|
raise "locals_type must be type" unless locals_type.is_a?(Parfait::Type)
|
|
end
|
|
|
|
def normalize_source
|
|
@source = yield @source
|
|
end
|
|
|
|
def create_parfait_method( type )
|
|
raise "create_method #{type.inspect} is not a Type" unless type.is_a? Parfait::Type
|
|
type.create_method( @name , @args_type )#FIXME, @locals_type)
|
|
end
|
|
|
|
def create_tmp
|
|
tmp_name = "tmp_#{@locals_type.instance_length}".to_sym
|
|
@locals_type = @locals_type.add_instance_variable( tmp_name , :Object )
|
|
tmp_name
|
|
end
|
|
end
|
|
end
|