class IRB::ExtendCommand::Debug

def binding_irb?

def binding_irb?
  caller.any? do |frame|
    BINDING_IRB_FRAME_REGEXPS.any? do |regexp|
      frame.match?(regexp)
    end
  end
end