Reports originally defined method names, not invoked names in Ruby 1.9.x
In Ruby 1.8.7, the reported method names were those of the methods actually invoked, so if #b was an alias for #a, and #b was called, it would be reported as "... in b'". In Ruby 1.9, the same invocation is now reported as "... in a'".
Unfortunately, this change disables the hack that could forme...