rubyx/lib/register/parfait/binary_code.rb

18 lines
416 B
Ruby
Raw Normal View History

# A method object is a description of the method, it's name etc
#
# But the code that the method represents, the binary, is held as an array
# in one of these.
#
module Parfait
# obviously not a "Word" but a ByteArray , but no such class yet
2016-12-06 10:38:09 +01:00
# As String on the other hand has no encoding (yet) it is close enough
class BinaryCode < Word
2015-06-03 09:01:59 +02:00
2015-05-28 20:10:27 +02:00
def to_s
"BinaryCode #{self.char_length}"
2015-05-28 20:10:27 +02:00
end
2015-06-03 09:01:59 +02:00
end
end