rename assembler to text_writer

as “assembly” really happens in the machine now
This commit is contained in:
Torsten Ruger
2018-03-29 18:17:19 +03:00
parent e012f16d7f
commit 3844a738cd
7 changed files with 50 additions and 42 deletions

View File

@@ -10,7 +10,7 @@ module Positioned
pos = self.positions[object]
if pos == nil
str = "position accessed but not set, "
str += "#{object.object_id.to_s(16)}\n"
str += "0x#{object.object_id.to_s(16)}\n"
str += "for #{object.class} byte_length #{object.byte_length if object.respond_to?(:byte_length)} for #{object.inspect[0...100]}"
raise str
end