# File lib/binding_of_caller/jruby_interpreted.rb, line 18
    def frame_type
      case
        when block?
          :block
        when eval?
          :eval
        when top?
          :top
        else
          :method
      end
    end