78ef1368de
not everything statement anymore (as in ruby) basic statement tests working, rest havoc
81 lines
1.7 KiB
Ruby
81 lines
1.7 KiB
Ruby
module Vool
|
|
class Statement
|
|
def slot_class
|
|
Mom::SlotMove
|
|
end
|
|
end
|
|
class Constant < Expression
|
|
def slot_class
|
|
Mom::SlotConstant
|
|
end
|
|
end
|
|
|
|
class IntegerConstant < Constant
|
|
attr_reader :value
|
|
def initialize(value)
|
|
@value = value
|
|
end
|
|
def to_mom(method)
|
|
return Mom::IntegerConstant.new(@value)
|
|
end
|
|
def ct_type
|
|
Parfait.object_space.get_class_by_name(:Integer).instance_type
|
|
end
|
|
end
|
|
class FloatConstant < Constant
|
|
attr_reader :value
|
|
def initialize(value)
|
|
@value = value
|
|
end
|
|
def ct_type
|
|
true
|
|
end
|
|
end
|
|
class TrueConstant < Constant
|
|
def ct_type
|
|
Parfait.object_space.get_class_by_name(:True).instance_type
|
|
end
|
|
end
|
|
class FalseConstant < Constant
|
|
def ct_type
|
|
Parfait.object_space.get_class_by_name(:False).instance_type
|
|
end
|
|
end
|
|
class NilConstant < Constant
|
|
def ct_type
|
|
Parfait.object_space.get_class_by_name(:Nil).instance_type
|
|
end
|
|
end
|
|
class SelfExpression < Expression
|
|
attr_reader :clazz
|
|
def set_class(clazz)
|
|
@clazz = clazz
|
|
end
|
|
def to_mom(in_method)
|
|
Mom::SlotDefinition.new(:message , [:receiver])
|
|
end
|
|
def ct_type
|
|
@clazz.instance_type
|
|
end
|
|
end
|
|
class SuperExpression < Statement
|
|
end
|
|
class StringConstant < Constant
|
|
attr_reader :value
|
|
def initialize(value)
|
|
@value = value
|
|
end
|
|
def to_mom(method)
|
|
return Mom::StringConstant.new(@value)
|
|
end
|
|
def ct_type
|
|
Parfait.object_space.get_class_by_name(:Word).instance_type
|
|
end
|
|
end
|
|
class SymbolConstant < StringConstant
|
|
def ct_type
|
|
Parfait.object_space.get_class_by_name(:Word).instance_type
|
|
end
|
|
end
|
|
end
|