rubyx/lib/parfait/variable.rb

20 lines
511 B
Ruby
Raw Normal View History

module Parfait
class Variable < Object
2015-09-27 15:06:11 +02:00
def initialize type , name , value = nil
2015-10-22 17:16:29 +02:00
raise "not type #{type}" unless Register.machine.space.get_class_by_name(type)
2015-09-27 15:06:11 +02:00
self.type , self.name , self.value = type , name , value
2015-10-15 08:32:47 +02:00
self.value = 0 if self.type == :Integer and value == nil
2015-09-27 15:06:11 +02:00
raise "must give name for variable" unless name
end
attributes [:type , :name, :value]
2015-09-27 15:06:11 +02:00
def to_s
"Variable(#{self.type} ,#{self.name})"
end
def inspect
to_s
end
end
end