summaryrefslogtreecommitdiff
path: root/lib/irb/cmd/whereami.rb
blob: b3def11b9346dfc16abb9fb6fced10044a3d9fb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

require_relative "nop"

# :stopdoc:
module IRB
  module ExtendCommand
    class Whereami < Nop
      def execute(*)
        code = irb_context.workspace.code_around_binding
        if code
          puts code
        else
          puts "The current context doesn't have code."
        end
      end
    end
  end
end
# :startdoc: