rename method to typed_method

This commit is contained in:
Torsten Ruger
2016-12-12 23:38:55 +02:00
parent 4ff684b6a4
commit 17023fdeb1
16 changed files with 27 additions and 22 deletions

View File

@ -38,7 +38,7 @@ module Elf
end
label += "=#{slot}" if slot.is_a?(Symbol) or slot.is_a?(String)
add_symbol label , slot.position
if slot.is_a?(Parfait::Method)
if slot.is_a?(Parfait::TypedMethod)
add_symbol slot.name.to_s , slot.binary.position
end
end