debugging to find operator not being ssa

This commit is contained in:
2020-03-14 12:23:34 +02:00
parent 61fc8a3991
commit 0cde7c1d0a
5 changed files with 29 additions and 6 deletions

View File

@ -57,7 +57,8 @@ module Parfait
@method.name
end
def to_s
"Message:#{method_name}(#{@arguments_given})"
id = @method ? @method.name : object_id.to_s(16)
"Message:#{id}(#{@arguments_given.value})"
end
def _set_next_message(nekst)