2018-07-19 13:46:51 +02:00
|
|
|
module Ruby
|
2018-07-20 09:05:11 +02:00
|
|
|
class Constant < Statement
|
|
|
|
def to_vool
|
|
|
|
vool_brother.new
|
2018-07-19 13:46:51 +02:00
|
|
|
end
|
|
|
|
end
|
2018-07-20 09:05:11 +02:00
|
|
|
class ValueConstant < Constant
|
2018-07-19 13:46:51 +02:00
|
|
|
attr_reader :value
|
|
|
|
def initialize(value)
|
|
|
|
@value = value
|
|
|
|
end
|
2018-07-20 09:05:11 +02:00
|
|
|
def to_vool
|
|
|
|
vool_brother.new(@value)
|
2018-07-19 13:46:51 +02:00
|
|
|
end
|
2018-07-20 09:05:11 +02:00
|
|
|
end
|
|
|
|
class IntegerConstant < ValueConstant
|
2018-07-19 13:46:51 +02:00
|
|
|
def to_s
|
|
|
|
value.to_s
|
|
|
|
end
|
|
|
|
end
|
2018-07-20 09:05:11 +02:00
|
|
|
class FloatConstant < ValueConstant
|
2018-07-19 13:46:51 +02:00
|
|
|
attr_reader :value
|
|
|
|
def initialize(value)
|
|
|
|
@value = value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
class TrueConstant < Constant
|
|
|
|
def to_s(depth = 0)
|
|
|
|
"true"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
class FalseConstant < Constant
|
|
|
|
def to_s(depth = 0)
|
|
|
|
"false"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
class NilConstant < Constant
|
|
|
|
def to_s(depth = 0)
|
|
|
|
"nil"
|
|
|
|
end
|
|
|
|
end
|
2018-07-20 09:05:11 +02:00
|
|
|
class SelfExpression < Constant
|
2018-07-19 13:46:51 +02:00
|
|
|
def to_s(depth = 0)
|
|
|
|
"self"
|
|
|
|
end
|
|
|
|
end
|
2019-08-16 15:05:45 +02:00
|
|
|
class SuperExpression < Constant
|
2018-07-19 13:46:51 +02:00
|
|
|
def to_s(depth = 0)
|
|
|
|
"super"
|
|
|
|
end
|
|
|
|
end
|
2018-07-20 09:05:11 +02:00
|
|
|
class StringConstant < ValueConstant
|
2018-07-19 13:46:51 +02:00
|
|
|
attr_reader :value
|
|
|
|
def initialize(value)
|
|
|
|
@value = value
|
|
|
|
end
|
|
|
|
def to_s(depth = 0)
|
|
|
|
"'#{@value}'"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
class SymbolConstant < StringConstant
|
|
|
|
end
|
|
|
|
end
|