2015-12-16 00:07:31 -05:00
|
|
|
# frozen_string_literal: false
|
2002-07-09 07:17:17 -04:00
|
|
|
#
|
2009-03-05 22:56:38 -05:00
|
|
|
# push-ws.rb -
|
2009-07-07 07:36:20 -04:00
|
|
|
# $Release Version: 0.9.6$
|
2002-07-09 07:17:17 -04:00
|
|
|
# $Revision$
|
2005-04-13 11:27:09 -04:00
|
|
|
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
|
2002-07-09 07:17:17 -04:00
|
|
|
#
|
|
|
|
# --
|
|
|
|
#
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2002-07-09 07:17:17 -04:00
|
|
|
#
|
|
|
|
|
2012-12-13 00:22:30 -05:00
|
|
|
module IRB # :nodoc:
|
2002-07-09 07:17:17 -04:00
|
|
|
class Context
|
|
|
|
|
2012-12-21 00:45:50 -05:00
|
|
|
# Size of the current WorkSpace stack
|
2002-07-09 07:17:17 -04:00
|
|
|
def irb_level
|
|
|
|
workspace_stack.size
|
|
|
|
end
|
|
|
|
|
2012-12-21 00:45:50 -05:00
|
|
|
# WorkSpaces in the current stack
|
2002-07-09 07:17:17 -04:00
|
|
|
def workspaces
|
|
|
|
if defined? @workspaces
|
2014-08-08 21:36:49 -04:00
|
|
|
@workspaces
|
2002-07-09 07:17:17 -04:00
|
|
|
else
|
2014-08-08 21:36:49 -04:00
|
|
|
@workspaces = []
|
2002-07-09 07:17:17 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-12-13 00:22:30 -05:00
|
|
|
# Creates a new workspace with the given object or binding, and appends it
|
|
|
|
# onto the current #workspaces stack.
|
|
|
|
#
|
|
|
|
# See IRB::Context#change_workspace and IRB::WorkSpace.new for more
|
|
|
|
# information.
|
2002-07-09 07:17:17 -04:00
|
|
|
def push_workspace(*_main)
|
|
|
|
if _main.empty?
|
2014-08-08 21:36:49 -04:00
|
|
|
if workspaces.empty?
|
|
|
|
print "No other workspace\n"
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
ws = workspaces.pop
|
|
|
|
workspaces.push @workspace
|
|
|
|
@workspace = ws
|
|
|
|
return workspaces
|
2002-07-09 07:17:17 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
workspaces.push @workspace
|
|
|
|
@workspace = WorkSpace.new(@workspace.binding, _main[0])
|
|
|
|
if !(class<<main;ancestors;end).include?(ExtendCommandBundle)
|
2014-08-08 21:36:49 -04:00
|
|
|
main.extend ExtendCommandBundle
|
2002-07-09 07:17:17 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-12-13 00:22:30 -05:00
|
|
|
# Removes the last element from the current #workspaces stack and returns
|
|
|
|
# it, or +nil+ if the current workspace stack is empty.
|
|
|
|
#
|
|
|
|
# Also, see #push_workspace.
|
2002-07-09 07:17:17 -04:00
|
|
|
def pop_workspace
|
|
|
|
if workspaces.empty?
|
2014-08-08 21:36:49 -04:00
|
|
|
print "workspace stack empty\n"
|
|
|
|
return
|
2002-07-09 07:17:17 -04:00
|
|
|
end
|
|
|
|
@workspace = workspaces.pop
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|