0dc89c772a
still need to use it in the return
16 lines
215 B
Ruby
16 lines
215 B
Ruby
class FakeInt
|
|
attr_reader :value
|
|
def initialize(val)
|
|
set_value(val)
|
|
end
|
|
def is_a?(clazz)
|
|
clazz == Parfait::Integer
|
|
end
|
|
def byte_length
|
|
4
|
|
end
|
|
def set_value(val)
|
|
@value = val
|
|
end
|
|
end
|