rubyx/lib/slot_machine/basic_values.rb

86 lines
2.0 KiB
Ruby
Raw Normal View History

2019-10-03 21:07:55 +03:00
module SlotMachine
# just name scoping the same stuff to slot
2018-03-13 12:30:51 +05:30
# so we know we are on the way down, keeping our layers seperated
# and we can put constant adding into the to_risc methods (instead of on sol classes)
2018-03-13 12:30:51 +05:30
class Constant
end
class LambdaConstant < Constant
attr_reader :lambda
def initialize(bl)
@lambda = bl
end
def to_parfait(compiler)
@lambda
end
end
2018-03-13 12:30:51 +05:30
class IntegerConstant < Constant
attr_reader :value
def initialize(value)
@value = value
end
def to_parfait(compiler)
value = Parfait.object_space.get_factory_for(:Integer).get_next_object
value.set_value(@value)
compiler.add_constant(value)
value
end
2018-03-13 12:30:51 +05:30
def ct_type
Parfait.object_space.get_type_by_class_name(:Integer)
2018-03-13 12:30:51 +05:30
end
end
class FloatConstant < Constant
attr_reader :value
def initialize(value)
@value = value
end
def ct_type
true
end
end
class TrueConstant < Constant
def to_parfait(compiler)
Parfait.object_space.true_object
end
2018-03-13 12:30:51 +05:30
def ct_type
Parfait.object_space.get_type_by_class_name(:TrueClass)
2018-03-13 12:30:51 +05:30
end
end
class FalseConstant < Constant
def to_parfait(compiler)
Parfait.object_space.false_object
end
2018-03-13 12:30:51 +05:30
def ct_type
Parfait.object_space.get_type_by_class_name(:FalseClass)
2018-03-13 12:30:51 +05:30
end
end
class NilConstant < Constant
def to_parfait(compiler)
Parfait.object_space.nil_object
end
2018-03-13 12:30:51 +05:30
def ct_type
Parfait.object_space.get_type_by_class_name(:NilClass)
2018-03-13 12:30:51 +05:30
end
end
class StringConstant < Constant
attr_reader :value
def initialize(value)
@value = value
end
def to_parfait(compiler)
value = Parfait.new_word(@value)
compiler.add_constant(value)
value
end
2018-03-13 12:30:51 +05:30
def ct_type
Parfait.object_space.get_type_by_class_name(:Word)
2018-03-13 12:30:51 +05:30
end
end
2018-03-25 13:27:15 +03:00
class SymbolConstant < Constant
2018-03-13 12:30:51 +05:30
def ct_type
Parfait.object_space.get_type_by_class_name(:Word)
2018-03-13 12:30:51 +05:30
end
end
end