ruby-debug-ide 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/lib/ruby-debug.rb CHANGED
@@ -106,9 +106,11 @@ module Debugger
106
106
  raise "Debugger is not started" unless started?
107
107
  return if @control_thread
108
108
  @control_thread = DebugThread.new do
109
- host ||= 'localhost' # nil does not seem to work for IPv6, localhost does
109
+ unless RUBY_PLATFORM =~ /darwin/i # Mac OS X seems to have problem with 'localhost'
110
+ host ||= 'localhost' # nil does not seem to work for IPv6, localhost does
111
+ end
110
112
  Debugger.print_debug("Waiting for connection on '#{host}:#{port}'")
111
- $stderr.puts "Fast Debugger (ruby-debug-ide 0.2.0) listens on #{host}:#{port}"
113
+ $stderr.puts "Fast Debugger (ruby-debug-ide 0.2.1) listens on #{host}:#{port}"
112
114
  server = TCPServer.new(host, port)
113
115
  while (session = server.accept)
114
116
  begin
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-debug-ide
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Markus Barchfeld, Martin Krauskopf
@@ -9,11 +9,12 @@ autorequire: ruby-debug-base
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-06-17 00:00:00 +02:00
12
+ date: 2008-07-31 00:00:00 +02:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: ruby-debug-base
17
+ type: :runtime
17
18
  version_requirement:
18
19
  version_requirements: !ruby/object:Gem::Requirement
19
20
  requirements:
@@ -32,14 +33,12 @@ extra_rdoc_files: []
32
33
  files:
33
34
  - bin/rdebug-ide
34
35
  - lib/ruby-debug
35
- - lib/ruby-debug/tags
36
36
  - lib/ruby-debug/xml_printer.rb
37
37
  - lib/ruby-debug/command.rb
38
38
  - lib/ruby-debug/processor.rb
39
39
  - lib/ruby-debug/commands
40
40
  - lib/ruby-debug/commands/load.rb
41
41
  - lib/ruby-debug/commands/breakpoints.rb
42
- - lib/ruby-debug/commands/tags
43
42
  - lib/ruby-debug/commands/variables.rb
44
43
  - lib/ruby-debug/commands/control.rb
45
44
  - lib/ruby-debug/commands/enable.rb
@@ -77,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
77
76
  requirements: []
78
77
 
79
78
  rubyforge_project: debug-commons
80
- rubygems_version: 1.1.1
79
+ rubygems_version: 1.2.0
81
80
  signing_key:
82
81
  specification_version: 2
83
82
  summary: IDE interface for ruby-debug.
@@ -1,168 +0,0 @@
1
- !_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
2
- !_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
3
- !_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@users.sourceforge.net/
4
- !_TAG_PROGRAM_NAME Exuberant Ctags //
5
- !_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/
6
- !_TAG_PROGRAM_VERSION 5.7 //
7
- AddBreakpoint breakpoints.rb /^ class AddBreakpoint < Command # :nodoc:$/;" c class:Debugger
8
- BreakpointsCommand breakpoints.rb /^ class BreakpointsCommand < Command # :nodoc:$/;" c
9
- CatchCommand catchpoint.rb /^ class CatchCommand < Command # :nodoc:$/;" c class:Debugger
10
- ConditionCommand condition.rb /^ class ConditionCommand < Command # :nodoc:$/;" c class:Debugger
11
- ContinueCommand stepping.rb /^ class ContinueCommand < Command # :nodoc:$/;" c
12
- Debugger breakpoints.rb /^module Debugger$/;" m
13
- Debugger catchpoint.rb /^module Debugger$/;" m
14
- Debugger condition.rb /^module Debugger$/;" m
15
- Debugger control.rb /^module Debugger$/;" m
16
- Debugger eval.rb /^module Debugger$/;" m
17
- Debugger frame.rb /^module Debugger$/;" m
18
- Debugger inspect.rb /^module Debugger$/;" m
19
- Debugger load.rb /^module Debugger$/;" m
20
- Debugger stepping.rb /^module Debugger$/;" m
21
- Debugger threads.rb /^module Debugger$/;" m
22
- Debugger variables.rb /^module Debugger$/;" m
23
- DeleteBreakpointCommand breakpoints.rb /^ class DeleteBreakpointCommand < Command # :nodoc:$/;" c
24
- DownCommand frame.rb /^ class DownCommand < Command # :nodoc:$/;" c
25
- EvalCommand eval.rb /^ class EvalCommand < Command # :nodoc:$/;" c class:Debugger
26
- FinishCommand stepping.rb /^ class FinishCommand < Command # :nodoc:$/;" c
27
- FrameCommand frame.rb /^ class FrameCommand < Command # :nodoc:$/;" c
28
- FrameFunctions frame.rb /^ module FrameFunctions # :nodoc:$/;" m class:Debugger
29
- InspectCommand inspect.rb /^ class InspectCommand < Command$/;" c class:Debugger
30
- InterruptCommand control.rb /^ class InterruptCommand < Command # :nodoc:$/;" c
31
- LoadCommand load.rb /^ class LoadCommand < Command $/;" c class:Debugger
32
- NextCommand stepping.rb /^ class NextCommand < Command # :nodoc:$/;" c class:Debugger
33
- PPCommand eval.rb /^ class PPCommand < Command # :nodoc:$/;" c
34
- QuitCommand control.rb /^ class QuitCommand < Command # :nodoc:$/;" c class:Debugger
35
- RestartCommand control.rb /^ class RestartCommand < Command # :nodoc:$/;" c
36
- StartCommand control.rb /^ class StartCommand < Command # :nodoc:$/;" c
37
- StepCommand stepping.rb /^ class StepCommand < Command # :nodoc:$/;" c
38
- ThreadCurrentCommand threads.rb /^ class ThreadCurrentCommand < Command # :nodoc:$/;" c
39
- ThreadListCommand threads.rb /^ class ThreadListCommand < Command # :nodoc:$/;" c class:Debugger
40
- ThreadResumeCommand threads.rb /^ class ThreadResumeCommand < Command # :nodoc:$/;" c
41
- ThreadStopCommand threads.rb /^ class ThreadStopCommand < Command # :nodoc:$/;" c
42
- ThreadSwitchCommand threads.rb /^ class ThreadSwitchCommand < Command # :nodoc:$/;" c
43
- UpCommand frame.rb /^ class UpCommand < Command # :nodoc:$/;" c
44
- VarConstantCommand variables.rb /^ class VarConstantCommand < Command # :nodoc:$/;" c class:Debugger
45
- VarGlobalCommand variables.rb /^ class VarGlobalCommand < Command # :nodoc:$/;" c
46
- VarInstanceCommand variables.rb /^ class VarInstanceCommand < Command # :nodoc:$/;" c
47
- VarLocalCommand variables.rb /^ class VarLocalCommand < Command # :nodoc:$/;" c
48
- WhereCommand frame.rb /^ class WhereCommand < Command # :nodoc:$/;" c class:Debugger
49
- adjust_frame frame.rb /^ def adjust_frame(frame_pos, absolute)$/;" f class:Debugger.FrameFunctions
50
- clear_references inspect.rb /^ def self.clear_references$/;" F class:Debugger.InspectCommand
51
- execute breakpoints.rb /^ def execute$/;" f class:BreakpointsCommand
52
- execute breakpoints.rb /^ def execute$/;" f class:Debugger.AddBreakpoint
53
- execute breakpoints.rb /^ def execute$/;" f class:DeleteBreakpointCommand
54
- execute catchpoint.rb /^ def execute$/;" f class:Debugger.CatchCommand
55
- execute condition.rb /^ def execute$/;" f class:Debugger.ConditionCommand
56
- execute control.rb /^ def execute$/;" f class:Debugger.QuitCommand
57
- execute control.rb /^ def execute$/;" f class:InterruptCommand
58
- execute control.rb /^ def execute$/;" f class:RestartCommand
59
- execute control.rb /^ def execute$/;" f class:StartCommand
60
- execute eval.rb /^ def execute$/;" f class:Debugger.EvalCommand
61
- execute eval.rb /^ def execute$/;" f class:PPCommand
62
- execute frame.rb /^ def execute$/;" f class:Debugger.WhereCommand
63
- execute frame.rb /^ def execute$/;" f class:DownCommand
64
- execute frame.rb /^ def execute$/;" f class:FrameCommand
65
- execute frame.rb /^ def execute$/;" f class:UpCommand
66
- execute inspect.rb /^ def execute$/;" f class:Debugger.InspectCommand
67
- execute load.rb /^ def execute$/;" f class:Debugger.LoadCommand
68
- execute stepping.rb /^ def execute$/;" f class:ContinueCommand
69
- execute stepping.rb /^ def execute$/;" f class:Debugger.NextCommand
70
- execute stepping.rb /^ def execute$/;" f class:FinishCommand
71
- execute stepping.rb /^ def execute$/;" f class:StepCommand
72
- execute threads.rb /^ def execute$/;" f class:Debugger.ThreadListCommand
73
- execute threads.rb /^ def execute$/;" f class:ThreadCurrentCommand
74
- execute threads.rb /^ def execute$/;" f class:ThreadResumeCommand
75
- execute threads.rb /^ def execute$/;" f class:ThreadStopCommand
76
- execute threads.rb /^ def execute$/;" f class:ThreadSwitchCommand
77
- execute variables.rb /^ def execute$/;" f class:Debugger.VarConstantCommand
78
- execute variables.rb /^ def execute$/;" f class:VarGlobalCommand
79
- execute variables.rb /^ def execute$/;" f class:VarInstanceCommand
80
- execute variables.rb /^ def execute$/;" f class:VarLocalCommand
81
- help breakpoints.rb /^ def help(cmd)$/;" f class:BreakpointsCommand
82
- help breakpoints.rb /^ def help(cmd)$/;" f class:Debugger.AddBreakpoint
83
- help breakpoints.rb /^ def help(cmd)$/;" f class:DeleteBreakpointCommand
84
- help catchpoint.rb /^ def help(cmd)$/;" f class:Debugger.CatchCommand
85
- help condition.rb /^ def help(cmd)$/;" f class:Debugger.ConditionCommand
86
- help control.rb /^ def help(cmd)$/;" f class:Debugger.QuitCommand
87
- help control.rb /^ def help(cmd)$/;" f class:InterruptCommand
88
- help control.rb /^ def help(cmd)$/;" f class:RestartCommand
89
- help control.rb /^ def help(cmd)$/;" f class:StartCommand
90
- help eval.rb /^ def help(cmd)$/;" f class:Debugger.EvalCommand
91
- help eval.rb /^ def help(cmd)$/;" f class:PPCommand
92
- help frame.rb /^ def help(cmd)$/;" f class:Debugger.WhereCommand
93
- help frame.rb /^ def help(cmd)$/;" f class:DownCommand
94
- help frame.rb /^ def help(cmd)$/;" f class:FrameCommand
95
- help frame.rb /^ def help(cmd)$/;" f class:UpCommand
96
- help stepping.rb /^ def help(cmd)$/;" f class:ContinueCommand
97
- help stepping.rb /^ def help(cmd)$/;" f class:Debugger.NextCommand
98
- help stepping.rb /^ def help(cmd)$/;" f class:FinishCommand
99
- help stepping.rb /^ def help(cmd)$/;" f class:StepCommand
100
- help threads.rb /^ def help(cmd)$/;" f class:Debugger.ThreadListCommand
101
- help threads.rb /^ def help(cmd)$/;" f class:ThreadCurrentCommand
102
- help threads.rb /^ def help(cmd)$/;" f class:ThreadResumeCommand
103
- help threads.rb /^ def help(cmd)$/;" f class:ThreadStopCommand
104
- help threads.rb /^ def help(cmd)$/;" f class:ThreadSwitchCommand
105
- help variables.rb /^ def help(cmd)$/;" f
106
- help variables.rb /^ def help(cmd)$/;" f class:Debugger
107
- help variables.rb /^ def help(cmd)$/;" f class:VarGlobalCommand
108
- help variables.rb /^ def help(cmd)$/;" f class:VarLocalCommand
109
- help_command breakpoints.rb /^ def help_command$/;" f class:BreakpointsCommand
110
- help_command breakpoints.rb /^ def help_command$/;" f class:Debugger.AddBreakpoint
111
- help_command breakpoints.rb /^ def help_command$/;" f class:DeleteBreakpointCommand
112
- help_command catchpoint.rb /^ def help_command$/;" f class:Debugger.CatchCommand
113
- help_command condition.rb /^ def help_command$/;" f class:Debugger.ConditionCommand
114
- help_command control.rb /^ def help_command$/;" f class:Debugger.QuitCommand
115
- help_command control.rb /^ def help_command$/;" f class:InterruptCommand
116
- help_command control.rb /^ def help_command$/;" f class:RestartCommand
117
- help_command control.rb /^ def help_command$/;" f class:StartCommand
118
- help_command eval.rb /^ def help_command$/;" f class:Debugger.EvalCommand
119
- help_command eval.rb /^ def help_command$/;" f class:PPCommand
120
- help_command frame.rb /^ def help_command$/;" f class:Debugger.WhereCommand
121
- help_command frame.rb /^ def help_command$/;" f class:DownCommand
122
- help_command frame.rb /^ def help_command$/;" f class:FrameCommand
123
- help_command frame.rb /^ def help_command$/;" f class:UpCommand
124
- help_command stepping.rb /^ def help_command$/;" f class:ContinueCommand
125
- help_command stepping.rb /^ def help_command$/;" f class:Debugger.NextCommand
126
- help_command stepping.rb /^ def help_command$/;" f class:FinishCommand
127
- help_command stepping.rb /^ def help_command$/;" f class:StepCommand
128
- help_command threads.rb /^ def help_command$/;" f class:Debugger.ThreadListCommand
129
- help_command threads.rb /^ def help_command$/;" f class:ThreadCurrentCommand
130
- help_command threads.rb /^ def help_command$/;" f class:ThreadResumeCommand
131
- help_command threads.rb /^ def help_command$/;" f class:ThreadStopCommand
132
- help_command threads.rb /^ def help_command$/;" f class:ThreadSwitchCommand
133
- help_command variables.rb /^ def help_command$/;" f
134
- help_command variables.rb /^ def help_command$/;" f class:Debugger
135
- help_command variables.rb /^ def help_command$/;" f class:VarGlobalCommand
136
- help_command variables.rb /^ def help_command$/;" f class:VarLocalCommand
137
- match eval.rb /^ def match(input)$/;" f class:Debugger.EvalCommand
138
- reference_result inspect.rb /^ def self.reference_result(result)$/;" F class:Debugger.InspectCommand
139
- regexp breakpoints.rb /^ def regexp$/;" f class:BreakpointsCommand
140
- regexp breakpoints.rb /^ def regexp$/;" f class:Debugger.AddBreakpoint
141
- regexp breakpoints.rb /^ def regexp$/;" f class:DeleteBreakpointCommand
142
- regexp catchpoint.rb /^ def regexp$/;" f class:Debugger.CatchCommand
143
- regexp condition.rb /^ def regexp$/;" f class:Debugger.ConditionCommand
144
- regexp control.rb /^ def regexp$/;" f class:Debugger.QuitCommand
145
- regexp control.rb /^ def regexp$/;" f class:InterruptCommand
146
- regexp control.rb /^ def regexp$/;" f class:RestartCommand
147
- regexp control.rb /^ def regexp$/;" f class:StartCommand
148
- regexp eval.rb /^ def regexp$/;" f class:Debugger.EvalCommand
149
- regexp eval.rb /^ def regexp$/;" f class:PPCommand
150
- regexp frame.rb /^ def regexp$/;" f class:Debugger.WhereCommand
151
- regexp frame.rb /^ def regexp$/;" f class:DownCommand
152
- regexp frame.rb /^ def regexp$/;" f class:FrameCommand
153
- regexp frame.rb /^ def regexp$/;" f class:UpCommand
154
- regexp inspect.rb /^ def regexp$/;" f class:Debugger.InspectCommand
155
- regexp load.rb /^ def regexp$/;" f class:Debugger.LoadCommand
156
- regexp stepping.rb /^ def regexp$/;" f class:ContinueCommand
157
- regexp stepping.rb /^ def regexp$/;" f class:Debugger.NextCommand
158
- regexp stepping.rb /^ def regexp$/;" f class:FinishCommand
159
- regexp stepping.rb /^ def regexp$/;" f class:StepCommand
160
- regexp threads.rb /^ def regexp$/;" f class:Debugger.ThreadListCommand
161
- regexp threads.rb /^ def regexp$/;" f class:ThreadCurrentCommand
162
- regexp threads.rb /^ def regexp$/;" f class:ThreadResumeCommand
163
- regexp threads.rb /^ def regexp$/;" f class:ThreadStopCommand
164
- regexp threads.rb /^ def regexp$/;" f class:ThreadSwitchCommand
165
- regexp variables.rb /^ def regexp$/;" f class:Debugger.VarConstantCommand
166
- regexp variables.rb /^ def regexp$/;" f class:VarGlobalCommand
167
- regexp variables.rb /^ def regexp$/;" f class:VarInstanceCommand
168
- regexp variables.rb /^ def regexp$/;" f class:VarLocalCommand
data/lib/ruby-debug/tags DELETED
@@ -1,260 +0,0 @@
1
- !_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
2
- !_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
3
- !_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@users.sourceforge.net/
4
- !_TAG_PROGRAM_NAME Exuberant Ctags //
5
- !_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/
6
- !_TAG_PROGRAM_VERSION 5.7 //
7
- AddBreakpoint commands/breakpoints.rb /^ class AddBreakpoint < Command # :nodoc:$/;" c class:Debugger
8
- BreakpointsCommand commands/breakpoints.rb /^ class BreakpointsCommand < Command # :nodoc:$/;" c
9
- CatchCommand commands/catchpoint.rb /^ class CatchCommand < Command # :nodoc:$/;" c class:Debugger
10
- Command command.rb /^ class Command # :nodoc:$/;" c class:Debugger
11
- ConditionCommand commands/condition.rb /^ class ConditionCommand < Command # :nodoc:$/;" c class:Debugger
12
- ContinueCommand commands/stepping.rb /^ class ContinueCommand < Command # :nodoc:$/;" c
13
- ControlCommandProcessor processor.rb /^ class ControlCommandProcessor # :nodoc:$/;" c class:Debugger
14
- ControlState processor.rb /^ class ControlState # :nodoc:$/;" c class:Debugger
15
- Debugger command.rb /^module Debugger$/;" m
16
- Debugger commands/breakpoints.rb /^module Debugger$/;" m
17
- Debugger commands/catchpoint.rb /^module Debugger$/;" m
18
- Debugger commands/condition.rb /^module Debugger$/;" m
19
- Debugger commands/control.rb /^module Debugger$/;" m
20
- Debugger commands/eval.rb /^module Debugger$/;" m
21
- Debugger commands/frame.rb /^module Debugger$/;" m
22
- Debugger commands/inspect.rb /^module Debugger$/;" m
23
- Debugger commands/load.rb /^module Debugger$/;" m
24
- Debugger commands/stepping.rb /^module Debugger$/;" m
25
- Debugger commands/threads.rb /^module Debugger$/;" m
26
- Debugger commands/variables.rb /^module Debugger$/;" m
27
- Debugger event_processor.rb /^ module Debugger$/;" m
28
- Debugger helper.rb /^module Debugger$/;" m
29
- Debugger interface.rb /^module Debugger $/;" m
30
- Debugger processor.rb /^module Debugger$/;" m
31
- Debugger xml_printer.rb /^module Debugger$/;" m
32
- DeleteBreakpointCommand commands/breakpoints.rb /^ class DeleteBreakpointCommand < Command # :nodoc:$/;" c
33
- DownCommand commands/frame.rb /^ class DownCommand < Command # :nodoc:$/;" c
34
- EvalCommand commands/eval.rb /^ class EvalCommand < Command # :nodoc:$/;" c class:Debugger
35
- EventProcessor event_processor.rb /^ class EventProcessor$/;" c class:Debugger
36
- FinishCommand commands/stepping.rb /^ class FinishCommand < Command # :nodoc:$/;" c
37
- FrameCommand commands/frame.rb /^ class FrameCommand < Command # :nodoc:$/;" c
38
- FrameFunctions commands/frame.rb /^ module FrameFunctions # :nodoc:$/;" m class:Debugger
39
- InspectCommand commands/inspect.rb /^ class InspectCommand < Command$/;" c class:Debugger
40
- InterruptCommand commands/control.rb /^ class InterruptCommand < Command # :nodoc:$/;" c
41
- LoadCommand commands/load.rb /^ class LoadCommand < Command $/;" c class:Debugger
42
- NextCommand commands/stepping.rb /^ class NextCommand < Command # :nodoc:$/;" c class:Debugger
43
- PPCommand commands/eval.rb /^ class PPCommand < Command # :nodoc:$/;" c
44
- ParseFunctions helper.rb /^ module ParseFunctions$/;" m class:Debugger
45
- QuitCommand commands/control.rb /^ class QuitCommand < Command # :nodoc:$/;" c class:Debugger
46
- RemoteInterface interface.rb /^ class RemoteInterface # :nodoc:$/;" c class:Debugger
47
- RestartCommand commands/control.rb /^ class RestartCommand < Command # :nodoc:$/;" c
48
- StartCommand commands/control.rb /^ class StartCommand < Command # :nodoc:$/;" c
49
- State processor.rb /^ class State # :nodoc:$/;" c class:Debugger
50
- StepCommand commands/stepping.rb /^ class StepCommand < Command # :nodoc:$/;" c
51
- TCPSocket interface.rb /^class TCPSocket$/;" c
52
- ThreadCurrentCommand commands/threads.rb /^ class ThreadCurrentCommand < Command # :nodoc:$/;" c
53
- ThreadListCommand commands/threads.rb /^ class ThreadListCommand < Command # :nodoc:$/;" c class:Debugger
54
- ThreadResumeCommand commands/threads.rb /^ class ThreadResumeCommand < Command # :nodoc:$/;" c
55
- ThreadStopCommand commands/threads.rb /^ class ThreadStopCommand < Command # :nodoc:$/;" c
56
- ThreadSwitchCommand commands/threads.rb /^ class ThreadSwitchCommand < Command # :nodoc:$/;" c
57
- UpCommand commands/frame.rb /^ class UpCommand < Command # :nodoc:$/;" c
58
- VarConstantCommand commands/variables.rb /^ class VarConstantCommand < Command # :nodoc:$/;" c class:Debugger
59
- VarGlobalCommand commands/variables.rb /^ class VarGlobalCommand < Command # :nodoc:$/;" c
60
- VarInstanceCommand commands/variables.rb /^ class VarInstanceCommand < Command # :nodoc:$/;" c
61
- VarLocalCommand commands/variables.rb /^ class VarLocalCommand < Command # :nodoc:$/;" c
62
- WhereCommand commands/frame.rb /^ class WhereCommand < Command # :nodoc:$/;" c class:Debugger
63
- XmlPrinter xml_printer.rb /^ class XmlPrinter # :nodoc:$/;" c class:Debugger
64
- adjust_frame commands/frame.rb /^ def adjust_frame(frame_pos, absolute)$/;" f class:Debugger.FrameFunctions
65
- at_breakpoint event_processor.rb /^ def at_breakpoint(context, breakpoint)$/;" f class:Debugger.EventProcessor
66
- at_catchpoint event_processor.rb /^ def at_catchpoint(context, excpt)$/;" f class:Debugger.EventProcessor
67
- at_line event_processor.rb /^ def at_line(context, file, line)$/;" f class:Debugger.EventProcessor
68
- at_line? event_processor.rb /^ def at_line?$/;" f class:Debugger.EventProcessor
69
- at_return event_processor.rb /^ def at_return(context, file, line)$/;" f class:Debugger.EventProcessor
70
- at_tracing event_processor.rb /^ def at_tracing(context, file, line)$/;" f class:Debugger.EventProcessor
71
- clear_references commands/inspect.rb /^ def self.clear_references$/;" F class:Debugger.InspectCommand
72
- close interface.rb /^ def close$/;" f class:Debugger.RemoteInterface
73
- commands command.rb /^ def commands$/;" f class:Debugger.Command
74
- context processor.rb /^ def context$/;" f class:Debugger.ControlState
75
- debug_eval command.rb /^ def debug_eval(str, b = get_binding)$/;" f class:Debugger
76
- debug_silent_eval command.rb /^ def debug_silent_eval(str)$/;" f class:Debugger
77
- errmsg command.rb /^ def errmsg(*args)$/;" f class:Debugger
78
- execute commands/breakpoints.rb /^ def execute$/;" f class:BreakpointsCommand
79
- execute commands/breakpoints.rb /^ def execute$/;" f class:Debugger.AddBreakpoint
80
- execute commands/breakpoints.rb /^ def execute$/;" f class:DeleteBreakpointCommand
81
- execute commands/catchpoint.rb /^ def execute$/;" f class:Debugger.CatchCommand
82
- execute commands/condition.rb /^ def execute$/;" f class:Debugger.ConditionCommand
83
- execute commands/control.rb /^ def execute$/;" f class:Debugger.QuitCommand
84
- execute commands/control.rb /^ def execute$/;" f class:InterruptCommand
85
- execute commands/control.rb /^ def execute$/;" f class:RestartCommand
86
- execute commands/control.rb /^ def execute$/;" f class:StartCommand
87
- execute commands/eval.rb /^ def execute$/;" f class:Debugger.EvalCommand
88
- execute commands/eval.rb /^ def execute$/;" f class:PPCommand
89
- execute commands/frame.rb /^ def execute$/;" f class:Debugger.WhereCommand
90
- execute commands/frame.rb /^ def execute$/;" f class:DownCommand
91
- execute commands/frame.rb /^ def execute$/;" f class:FrameCommand
92
- execute commands/frame.rb /^ def execute$/;" f class:UpCommand
93
- execute commands/inspect.rb /^ def execute$/;" f class:Debugger.InspectCommand
94
- execute commands/load.rb /^ def execute$/;" f class:Debugger.LoadCommand
95
- execute commands/stepping.rb /^ def execute$/;" f class:ContinueCommand
96
- execute commands/stepping.rb /^ def execute$/;" f class:Debugger.NextCommand
97
- execute commands/stepping.rb /^ def execute$/;" f class:FinishCommand
98
- execute commands/stepping.rb /^ def execute$/;" f class:StepCommand
99
- execute commands/threads.rb /^ def execute$/;" f class:Debugger.ThreadListCommand
100
- execute commands/threads.rb /^ def execute$/;" f class:ThreadCurrentCommand
101
- execute commands/threads.rb /^ def execute$/;" f class:ThreadResumeCommand
102
- execute commands/threads.rb /^ def execute$/;" f class:ThreadStopCommand
103
- execute commands/threads.rb /^ def execute$/;" f class:ThreadSwitchCommand
104
- execute commands/variables.rb /^ def execute$/;" f class:Debugger.VarConstantCommand
105
- execute commands/variables.rb /^ def execute$/;" f class:VarGlobalCommand
106
- execute commands/variables.rb /^ def execute$/;" f class:VarInstanceCommand
107
- execute commands/variables.rb /^ def execute$/;" f class:VarLocalCommand
108
- file processor.rb /^ def file$/;" f class:Debugger.ControlState
109
- get_binding command.rb /^ def get_binding$/;" f class:Debugger
110
- get_context command.rb /^ def get_context(thnum)$/;" f class:Debugger
111
- get_int helper.rb /^ def get_int(str, cmd, min=nil, max=nil, default=1)$/;" f class:Debugger.ParseFunctions
112
- hbinding command.rb /^ def hbinding(hash)$/;" f class:Debugger
113
- help commands/breakpoints.rb /^ def help(cmd)$/;" f class:BreakpointsCommand
114
- help commands/breakpoints.rb /^ def help(cmd)$/;" f class:Debugger.AddBreakpoint
115
- help commands/breakpoints.rb /^ def help(cmd)$/;" f class:DeleteBreakpointCommand
116
- help commands/catchpoint.rb /^ def help(cmd)$/;" f class:Debugger.CatchCommand
117
- help commands/condition.rb /^ def help(cmd)$/;" f class:Debugger.ConditionCommand
118
- help commands/control.rb /^ def help(cmd)$/;" f class:Debugger.QuitCommand
119
- help commands/control.rb /^ def help(cmd)$/;" f class:InterruptCommand
120
- help commands/control.rb /^ def help(cmd)$/;" f class:RestartCommand
121
- help commands/control.rb /^ def help(cmd)$/;" f class:StartCommand
122
- help commands/eval.rb /^ def help(cmd)$/;" f class:Debugger.EvalCommand
123
- help commands/eval.rb /^ def help(cmd)$/;" f class:PPCommand
124
- help commands/frame.rb /^ def help(cmd)$/;" f class:Debugger.WhereCommand
125
- help commands/frame.rb /^ def help(cmd)$/;" f class:DownCommand
126
- help commands/frame.rb /^ def help(cmd)$/;" f class:FrameCommand
127
- help commands/frame.rb /^ def help(cmd)$/;" f class:UpCommand
128
- help commands/stepping.rb /^ def help(cmd)$/;" f class:ContinueCommand
129
- help commands/stepping.rb /^ def help(cmd)$/;" f class:Debugger.NextCommand
130
- help commands/stepping.rb /^ def help(cmd)$/;" f class:FinishCommand
131
- help commands/stepping.rb /^ def help(cmd)$/;" f class:StepCommand
132
- help commands/threads.rb /^ def help(cmd)$/;" f class:Debugger.ThreadListCommand
133
- help commands/threads.rb /^ def help(cmd)$/;" f class:ThreadCurrentCommand
134
- help commands/threads.rb /^ def help(cmd)$/;" f class:ThreadResumeCommand
135
- help commands/threads.rb /^ def help(cmd)$/;" f class:ThreadStopCommand
136
- help commands/threads.rb /^ def help(cmd)$/;" f class:ThreadSwitchCommand
137
- help commands/variables.rb /^ def help(cmd)$/;" f
138
- help commands/variables.rb /^ def help(cmd)$/;" f class:Debugger
139
- help commands/variables.rb /^ def help(cmd)$/;" f class:VarGlobalCommand
140
- help commands/variables.rb /^ def help(cmd)$/;" f class:VarLocalCommand
141
- help_command commands/breakpoints.rb /^ def help_command$/;" f class:BreakpointsCommand
142
- help_command commands/breakpoints.rb /^ def help_command$/;" f class:Debugger.AddBreakpoint
143
- help_command commands/breakpoints.rb /^ def help_command$/;" f class:DeleteBreakpointCommand
144
- help_command commands/catchpoint.rb /^ def help_command$/;" f class:Debugger.CatchCommand
145
- help_command commands/condition.rb /^ def help_command$/;" f class:Debugger.ConditionCommand
146
- help_command commands/control.rb /^ def help_command$/;" f class:Debugger.QuitCommand
147
- help_command commands/control.rb /^ def help_command$/;" f class:InterruptCommand
148
- help_command commands/control.rb /^ def help_command$/;" f class:RestartCommand
149
- help_command commands/control.rb /^ def help_command$/;" f class:StartCommand
150
- help_command commands/eval.rb /^ def help_command$/;" f class:Debugger.EvalCommand
151
- help_command commands/eval.rb /^ def help_command$/;" f class:PPCommand
152
- help_command commands/frame.rb /^ def help_command$/;" f class:Debugger.WhereCommand
153
- help_command commands/frame.rb /^ def help_command$/;" f class:DownCommand
154
- help_command commands/frame.rb /^ def help_command$/;" f class:FrameCommand
155
- help_command commands/frame.rb /^ def help_command$/;" f class:UpCommand
156
- help_command commands/stepping.rb /^ def help_command$/;" f class:ContinueCommand
157
- help_command commands/stepping.rb /^ def help_command$/;" f class:Debugger.NextCommand
158
- help_command commands/stepping.rb /^ def help_command$/;" f class:FinishCommand
159
- help_command commands/stepping.rb /^ def help_command$/;" f class:StepCommand
160
- help_command commands/threads.rb /^ def help_command$/;" f class:Debugger.ThreadListCommand
161
- help_command commands/threads.rb /^ def help_command$/;" f class:ThreadCurrentCommand
162
- help_command commands/threads.rb /^ def help_command$/;" f class:ThreadResumeCommand
163
- help_command commands/threads.rb /^ def help_command$/;" f class:ThreadStopCommand
164
- help_command commands/threads.rb /^ def help_command$/;" f class:ThreadSwitchCommand
165
- help_command commands/variables.rb /^ def help_command$/;" f
166
- help_command commands/variables.rb /^ def help_command$/;" f class:Debugger
167
- help_command commands/variables.rb /^ def help_command$/;" f class:VarGlobalCommand
168
- help_command commands/variables.rb /^ def help_command$/;" f class:VarLocalCommand
169
- inherited command.rb /^ def inherited(klass)$/;" f class:Debugger.Command
170
- initialize command.rb /^ def initialize(state, printer)$/;" f class:Debugger
171
- initialize event_processor.rb /^ def initialize(interface)$/;" f class:Debugger.EventProcessor
172
- initialize interface.rb /^ def initialize(socket)$/;" f class:Debugger.RemoteInterface
173
- initialize processor.rb /^ def initialize$/;" f class:Debugger.State
174
- initialize processor.rb /^ def initialize(interface)$/;" f class:Debugger.ControlCommandProcessor
175
- initialize processor.rb /^ def initialize(interface)$/;" f class:Debugger.ControlState
176
- initialize xml_printer.rb /^ def initialize(interface)$/;" f class:Debugger.XmlPrinter
177
- line_at command.rb /^ def line_at(file, line)$/;" f class:Debugger
178
- line_event event_processor.rb /^ def line_event(context, file, line)$/;" f class:Debugger.EventProcessor
179
- load_commands command.rb /^ def load_commands$/;" f class:Debugger.Command
180
- match command.rb /^ def match(input)$/;" f class:Debugger
181
- match commands/eval.rb /^ def match(input)$/;" f class:Debugger.EvalCommand
182
- method_missing command.rb /^ def method_missing(meth, *args, &block)$/;" f class:Debugger.Command
183
- method_missing command.rb /^ def method_missing(meth, *args, &block)$/;" f class:Debugger
184
- non_blocking_gets interface.rb /^ def non_blocking_gets$/;" f class:TCPSocket
185
- options command.rb /^ def options$/;" f class:Debugger.Command
186
- print command.rb /^ def print(*args)$/;" f class:Debugger
187
- print interface.rb /^ def print(*args)$/;" f class:Debugger.RemoteInterface
188
- print processor.rb /^ def print(*args)$/;" f class:Debugger.ControlCommandProcessor
189
- print processor.rb /^ def print(*args)$/;" f class:Debugger.ControlState
190
- print processor.rb /^ def print(*args)$/;" f class:Debugger.State
191
- print xml_printer.rb /^ def print(*params)$/;" f
192
- print_array xml_printer.rb /^ def print_array(array)$/;" f
193
- print_at_line xml_printer.rb /^ def print_at_line(file, line)$/;" f
194
- print_breakpoint xml_printer.rb /^ def print_breakpoint(n, breakpoint)$/;" f
195
- print_breakpoint_added xml_printer.rb /^ def print_breakpoint_added(b)$/;" f
196
- print_breakpoint_deleted xml_printer.rb /^ def print_breakpoint_deleted(b)$/;" f
197
- print_breakpoints xml_printer.rb /^ def print_breakpoints(breakpoints)$/;" f
198
- print_catchpoint xml_printer.rb /^ def print_catchpoint(exception)$/;" f
199
- print_contdition_set xml_printer.rb /^ def print_contdition_set(bp_id)$/;" f
200
- print_context xml_printer.rb /^ def print_context(context)$/;" f
201
- print_contexts xml_printer.rb /^ def print_contexts(contexts)$/;" f
202
- print_current_frame xml_printer.rb /^ def print_current_frame(context, frame_pos)$/;" f
203
- print_debug xml_printer.rb /^ def print_debug(*args)$/;" f class:Debugger
204
- print_element xml_printer.rb /^ def print_element(name)$/;" f
205
- print_error xml_printer.rb /^ def print_error(*args)$/;" f class:Debugger.XmlPrinter
206
- print_eval xml_printer.rb /^ def print_eval(exp, value)$/;" f
207
- print_exception xml_printer.rb /^ def print_exception(exception, binding)$/;" f
208
- print_expression xml_printer.rb /^ def print_expression(exp, value, idx)$/;" f
209
- print_expressions xml_printer.rb /^ def print_expressions(exps)$/;" f
210
- print_frame xml_printer.rb /^ def print_frame(context, idx, cur_idx)$/;" f
211
- print_frames xml_printer.rb /^ def print_frames(context, cur_idx)$/;" f class:Debugger
212
- print_hash xml_printer.rb /^ def print_hash(hash)$/;" f
213
- print_inspect xml_printer.rb /^ def print_inspect(eval_result)$/;" f
214
- print_list xml_printer.rb /^ def print_list(b, e, file, line)$/;" f
215
- print_load_result xml_printer.rb /^ def print_load_result(file, exception=nil)$/;" f
216
- print_methods xml_printer.rb /^ def print_methods(methods)$/;" f
217
- print_msg xml_printer.rb /^ def print_msg(*args)$/;" f class:Debugger.XmlPrinter
218
- print_pp xml_printer.rb /^ def print_pp(exp, value)$/;" f
219
- print_trace xml_printer.rb /^ def print_trace(context, file, line)$/;" f
220
- print_variable xml_printer.rb /^ def print_variable(name, value, kind)$/;" f
221
- print_variables xml_printer.rb /^ def print_variables(vars, kind)$/;" f
222
- proceed processor.rb /^ def proceed$/;" f class:Debugger.ControlState
223
- proceed processor.rb /^ def proceed$/;" f class:Debugger.State
224
- proceed? processor.rb /^ def proceed?$/;" f class:Debugger.State
225
- process_commands processor.rb /^ def process_commands$/;" f class:Debugger.ControlCommandProcessor
226
- process_context_commands processor.rb /^ def process_context_commands(input)$/;" f class:Debugger.ControlCommandProcessor
227
- read_command interface.rb /^ def read_command$/;" f class:Debugger.RemoteInterface
228
- reference_result commands/inspect.rb /^ def self.reference_result(result)$/;" F class:Debugger.InspectCommand
229
- regexp commands/breakpoints.rb /^ def regexp$/;" f class:BreakpointsCommand
230
- regexp commands/breakpoints.rb /^ def regexp$/;" f class:Debugger.AddBreakpoint
231
- regexp commands/breakpoints.rb /^ def regexp$/;" f class:DeleteBreakpointCommand
232
- regexp commands/catchpoint.rb /^ def regexp$/;" f class:Debugger.CatchCommand
233
- regexp commands/condition.rb /^ def regexp$/;" f class:Debugger.ConditionCommand
234
- regexp commands/control.rb /^ def regexp$/;" f class:Debugger.QuitCommand
235
- regexp commands/control.rb /^ def regexp$/;" f class:InterruptCommand
236
- regexp commands/control.rb /^ def regexp$/;" f class:RestartCommand
237
- regexp commands/control.rb /^ def regexp$/;" f class:StartCommand
238
- regexp commands/eval.rb /^ def regexp$/;" f class:Debugger.EvalCommand
239
- regexp commands/eval.rb /^ def regexp$/;" f class:PPCommand
240
- regexp commands/frame.rb /^ def regexp$/;" f class:Debugger.WhereCommand
241
- regexp commands/frame.rb /^ def regexp$/;" f class:DownCommand
242
- regexp commands/frame.rb /^ def regexp$/;" f class:FrameCommand
243
- regexp commands/frame.rb /^ def regexp$/;" f class:UpCommand
244
- regexp commands/inspect.rb /^ def regexp$/;" f class:Debugger.InspectCommand
245
- regexp commands/load.rb /^ def regexp$/;" f class:Debugger.LoadCommand
246
- regexp commands/stepping.rb /^ def regexp$/;" f class:ContinueCommand
247
- regexp commands/stepping.rb /^ def regexp$/;" f class:Debugger.NextCommand
248
- regexp commands/stepping.rb /^ def regexp$/;" f class:FinishCommand
249
- regexp commands/stepping.rb /^ def regexp$/;" f class:StepCommand
250
- regexp commands/threads.rb /^ def regexp$/;" f class:Debugger.ThreadListCommand
251
- regexp commands/threads.rb /^ def regexp$/;" f class:ThreadCurrentCommand
252
- regexp commands/threads.rb /^ def regexp$/;" f class:ThreadResumeCommand
253
- regexp commands/threads.rb /^ def regexp$/;" f class:ThreadStopCommand
254
- regexp commands/threads.rb /^ def regexp$/;" f class:ThreadSwitchCommand
255
- regexp commands/variables.rb /^ def regexp$/;" f class:Debugger.VarConstantCommand
256
- regexp commands/variables.rb /^ def regexp$/;" f class:VarGlobalCommand
257
- regexp commands/variables.rb /^ def regexp$/;" f class:VarInstanceCommand
258
- regexp commands/variables.rb /^ def regexp$/;" f class:VarLocalCommand
259
- splitter processor.rb /^ def splitter$/;" f class:Debugger.ControlCommandProcessor
260
- timeout command.rb /^ def timeout(sec)$/;" f class:Debugger