# File lib/yard/handlers/ruby/base.rb, line 152
        def caller_method
          if statement.call? || statement.def?
            statement.method_name(true).to_s
          elsif statement.type == :var_ref || statement.type == :vcall
            statement[0].jump(:ident, :kw).source
          else
            nil
          end
        end