move parfait into register

register layer uses parfait models to generate object space
so parfait  should be part of register (not above it)
This commit is contained in:
Torsten Ruger
2015-11-18 12:04:25 +02:00
parent 2bc2d4486f
commit 979660f282
23 changed files with 18 additions and 18 deletions

View File

@ -1,17 +0,0 @@
# 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
# As on the other hand has no encoding (yet) it is close enough
class BinaryCode < Word
def to_s
"BinaryCode #{self.char_length}"
end
end
end