mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
20 lines
362 B
Ruby
20 lines
362 B
Ruby
# 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:
|