rubyx/lib/vool/statements/basic_values.rb

75 lines
1.6 KiB
Ruby
Raw Normal View History

2017-04-01 20:28:57 +02:00
module Vool
class Constant < Expression
end
class IntegerConstant < Constant
attr_reader :value
2017-04-01 20:28:57 +02:00
def initialize(value)
@value = value
end
def slot_definition(method)
2018-03-13 08:00:51 +01:00
return Mom::IntegerConstant.new(@value)
end
def ct_type
Parfait.object_space.get_class_by_name(:Integer).instance_type
end
#gobble it up
def each(&block)
end
2017-04-01 20:28:57 +02:00
end
class FloatConstant < Constant
attr_reader :value
2017-04-01 20:28:57 +02:00
def initialize(value)
@value = value
end
def ct_type
true
end
2017-04-01 20:28:57 +02:00
end
class TrueConstant < Constant
def ct_type
Parfait.object_space.get_class_by_name(:True).instance_type
end
2017-04-01 20:28:57 +02:00
end
class FalseConstant < Constant
def ct_type
Parfait.object_space.get_class_by_name(:False).instance_type
end
2017-04-01 20:28:57 +02:00
end
class NilConstant < Constant
def ct_type
Parfait.object_space.get_class_by_name(:Nil).instance_type
end
2017-04-01 20:28:57 +02:00
end
class SelfExpression < Expression
attr_reader :clazz
2018-03-13 08:00:51 +01:00
def to_mom(in_method)
@clazz = in_method.clazz
Mom::SlotDefinition.new(:message , [:receiver])
2018-03-13 08:00:51 +01:00
end
def ct_type
@clazz.instance_type
end
2017-04-02 11:59:07 +02:00
end
class SuperExpression < Statement
end
class StringConstant < Constant
attr_reader :value
2017-04-01 20:28:57 +02:00
def initialize(value)
@value = value
end
def slot_definition(method)
2018-03-13 08:00:51 +01:00
return Mom::StringConstant.new(@value)
end
def ct_type
Parfait.object_space.get_class_by_name(:Word).instance_type
end
2017-04-01 20:28:57 +02:00
end
class SymbolConstant < StringConstant
def ct_type
Parfait.object_space.get_class_by_name(:Word).instance_type
end
2017-04-01 20:28:57 +02:00
end
end