# File lib/yard/handlers/ruby/legacy/base.rb, line 54
        def caller_method
          if statement.tokens.first.is_a?(TkIDENTIFIER)
            statement.tokens.first.text
          elsif statement.tokens.first.is_a?(TkDEF)
            extract_method_details.first
          else
            nil
          end
        end