rbx-trepanning 0.0.6-universal-rubinius-1.2 → 0.0.7-universal-rubinius-1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (137) hide show
  1. data/.gitignore +5 -0
  2. data/ChangeLog +161 -0
  3. data/Makefile +13 -0
  4. data/NEWS +11 -0
  5. data/Rakefile +6 -5
  6. data/app/.gitignore +2 -0
  7. data/app/breakpoint.rb +53 -36
  8. data/app/brkptmgr.rb +10 -0
  9. data/app/complete.rb +29 -2
  10. data/app/condition.rb +22 -0
  11. data/app/default.rb +1 -0
  12. data/app/eventbuffer.rb +147 -0
  13. data/app/frame.rb +3 -1
  14. data/app/options.rb +2 -2
  15. data/app/run.rb +5 -3
  16. data/bin/.gitignore +2 -0
  17. data/data/.gitignore +2 -0
  18. data/doc/.gitignore +1 -0
  19. data/doc/debugger.html +108 -0
  20. data/interface/.gitignore +2 -0
  21. data/interface/user.rb +8 -7
  22. data/io/.gitignore +3 -0
  23. data/io/input.rb +14 -8
  24. data/lib/.gitignore +2 -0
  25. data/lib/trepanning.rb +25 -33
  26. data/processor/.gitignore +3 -0
  27. data/processor/Makefile +7 -0
  28. data/processor/breakpoint.rb +4 -0
  29. data/processor/command/.gitignore +2 -0
  30. data/processor/command/backtrace.rb +5 -0
  31. data/processor/command/base/.gitignore +2 -0
  32. data/processor/command/base/subcmd.rb +2 -1
  33. data/processor/command/base/subsubcmd.rb +23 -1
  34. data/processor/command/base/subsubmgr.rb +2 -1
  35. data/processor/command/complete.rb +2 -1
  36. data/processor/command/condition.rb +62 -0
  37. data/processor/command/down.rb +4 -4
  38. data/processor/command/eval.rb +14 -6
  39. data/processor/command/exit.rb +8 -7
  40. data/processor/command/frame.rb +6 -2
  41. data/processor/command/info_subcmd/.gitignore +3 -0
  42. data/processor/command/info_subcmd/breakpoints.rb +8 -0
  43. data/processor/command/info_subcmd/files.rb +1 -1
  44. data/processor/command/info_subcmd/line.rb +1 -1
  45. data/processor/command/info_subcmd/ruby.rb +1 -1
  46. data/processor/command/kill.rb +21 -10
  47. data/processor/command/macro.rb +15 -23
  48. data/processor/command/set_subcmd/.gitignore +2 -0
  49. data/processor/command/set_subcmd/auto_subcmd/.gitignore +2 -0
  50. data/processor/command/set_subcmd/debug_subcmd/.gitignore +2 -0
  51. data/processor/command/set_subcmd/different.rb +2 -0
  52. data/processor/command/set_subcmd/max_subcmd/.gitignore +2 -0
  53. data/processor/command/set_subcmd/substitute_subcmd/.gitignore +3 -0
  54. data/processor/command/set_subcmd/trace_subcmd/.gitignore +2 -0
  55. data/processor/command/set_subcmd/trace_subcmd/buffer.rb +42 -0
  56. data/processor/command/set_subcmd/trace_subcmd/print.rb +13 -29
  57. data/processor/command/show_subcmd/.gitignore +3 -0
  58. data/processor/command/show_subcmd/alias.rb +7 -3
  59. data/processor/command/show_subcmd/auto_subcmd/.gitignore +3 -0
  60. data/processor/command/show_subcmd/auto_subcmd/irb.rb +1 -1
  61. data/processor/command/show_subcmd/debug_subcmd/.gitignore +3 -0
  62. data/processor/command/show_subcmd/macro.rb +62 -0
  63. data/processor/command/show_subcmd/max_subcmd/.gitignore +2 -0
  64. data/processor/command/show_subcmd/trace_subcmd/.gitignore +2 -0
  65. data/processor/command/show_subcmd/trace_subcmd/buffer.rb +64 -0
  66. data/processor/command/show_subcmd/trace_subcmd/print.rb +5 -20
  67. data/processor/command/source.rb +7 -0
  68. data/processor/command/up.rb +12 -8
  69. data/processor/eventbuf.rb +101 -0
  70. data/processor/frame.rb +19 -1
  71. data/processor/hook.rb +2 -2
  72. data/processor/load_cmds.rb +57 -49
  73. data/processor/location.rb +40 -0
  74. data/processor/main.rb +27 -26
  75. data/processor/msg.rb +17 -0
  76. data/processor/stepping.rb +21 -1
  77. data/processor/validate.rb +1 -0
  78. data/rbx-trepanning.gemspec +40 -0
  79. data/sample/.gitignore +2 -0
  80. data/test/data/.gitignore +1 -0
  81. data/test/example/.gitignore +2 -0
  82. data/test/functional/.gitignore +3 -0
  83. data/test/functional/test-finish.rb +2 -2
  84. data/test/integration/.gitignore +3 -0
  85. data/test/unit/.gitignore +3 -0
  86. data/test/unit/cmd-helper.rb +6 -2
  87. data/test/unit/test-app-brkpt.rb +14 -12
  88. data/test/unit/test-app-complete.rb +39 -0
  89. data/test/unit/test-app-condition.rb +18 -0
  90. data/test/unit/test-app-options.rb +8 -1
  91. data/test/unit/test-base-subsubcmd.rb +21 -0
  92. data/test/unit/test-cmd-finish.rb +4 -0
  93. data/test/unit/test-completion.rb +11 -6
  94. data/test/unit/test-proc-load_cmds.rb +2 -2
  95. metadata +295 -218
  96. data/app/breakpoint.rbc +0 -3551
  97. data/app/brkptmgr.rbc +0 -2903
  98. data/app/client.rbc +0 -1225
  99. data/app/complete.rbc +0 -1288
  100. data/app/default.rbc +0 -1132
  101. data/app/display.rbc +0 -2578
  102. data/app/frame.rbc +0 -1808
  103. data/app/irb.rbc +0 -2094
  104. data/app/iseq.rbc +0 -2192
  105. data/app/llvm.rbc +0 -2478
  106. data/app/method.rbc +0 -2492
  107. data/app/method_name.rbc +0 -2467
  108. data/app/mock.rbc +0 -398
  109. data/app/options.rbc +0 -2898
  110. data/app/rbx-llvm.rbc +0 -2478
  111. data/app/run.rbc +0 -1244
  112. data/app/util.rbc +0 -1146
  113. data/app/validate.rbc +0 -676
  114. data/bin/trepan.compiled.rbc +0 -1043
  115. data/bin/trepanx.compiled.rbc +0 -1049
  116. data/data/irbrc.compiled.rbc +0 -640
  117. data/interface/base_intf.rbc +0 -1899
  118. data/interface/client.rbc +0 -1072
  119. data/interface/comcodes.rbc +0 -385
  120. data/interface/script.rbc +0 -1642
  121. data/interface/server.rbc +0 -2213
  122. data/interface/user.rbc +0 -2867
  123. data/io/base_io.rbc +0 -2111
  124. data/io/input.rbc +0 -2528
  125. data/io/null_output.rbc +0 -730
  126. data/io/string_array.rbc +0 -2466
  127. data/io/tcpclient.rbc +0 -2419
  128. data/io/tcpfns.rbc +0 -694
  129. data/io/tcpserver.rbc +0 -2638
  130. data/lib/trepanning.rbc +0 -7705
  131. data/lib/trepanning2.rb +0 -441
  132. data/sample/list-terminal-colors.rbc +0 -2318
  133. data/sample/rocky-trepanx-colors.rbc +0 -530
  134. data/test/data/step-bug.cmd +0 -11
  135. data/test/data/step-bug.right +0 -3
  136. data/test/example/step-bug.rb +0 -14
  137. data/test/integration/skip-test-step-bug.rb +0 -17
@@ -1,385 +0,0 @@
1
- !RBIX
2
- 0
3
- x
4
- M
5
- 1
6
- n
7
- n
8
- x
9
- 10
10
- __script__
11
- i
12
- 28
13
- 99
14
- 7
15
- 0
16
- 65
17
- 49
18
- 1
19
- 2
20
- 13
21
- 99
22
- 12
23
- 7
24
- 2
25
- 12
26
- 7
27
- 3
28
- 12
29
- 65
30
- 12
31
- 49
32
- 4
33
- 4
34
- 15
35
- 49
36
- 2
37
- 0
38
- 15
39
- 2
40
- 11
41
- I
42
- 6
43
- I
44
- 0
45
- I
46
- 0
47
- I
48
- 0
49
- n
50
- p
51
- 5
52
- x
53
- 10
54
- Trepanning
55
- x
56
- 11
57
- open_module
58
- x
59
- 15
60
- __module_init__
61
- M
62
- 1
63
- n
64
- n
65
- x
66
- 10
67
- Trepanning
68
- i
69
- 28
70
- 5
71
- 66
72
- 99
73
- 7
74
- 0
75
- 65
76
- 49
77
- 1
78
- 2
79
- 13
80
- 99
81
- 12
82
- 7
83
- 2
84
- 12
85
- 7
86
- 3
87
- 12
88
- 65
89
- 12
90
- 49
91
- 4
92
- 4
93
- 15
94
- 49
95
- 2
96
- 0
97
- 11
98
- I
99
- 6
100
- I
101
- 0
102
- I
103
- 0
104
- I
105
- 0
106
- n
107
- p
108
- 5
109
- x
110
- 19
111
- RemoteCommunication
112
- x
113
- 11
114
- open_module
115
- x
116
- 15
117
- __module_init__
118
- M
119
- 1
120
- n
121
- n
122
- x
123
- 19
124
- RemoteCommunication
125
- i
126
- 114
127
- 5
128
- 66
129
- 26
130
- 93
131
- 0
132
- 15
133
- 29
134
- 17
135
- 0
136
- 7
137
- 0
138
- 98
139
- 1
140
- 1
141
- 30
142
- 8
143
- 23
144
- 25
145
- 92
146
- 0
147
- 27
148
- 8
149
- 28
150
- 15
151
- 7
152
- 2
153
- 8
154
- 29
155
- 1
156
- 9
157
- 34
158
- 1
159
- 8
160
- 113
161
- 65
162
- 7
163
- 0
164
- 7
165
- 3
166
- 64
167
- 49
168
- 4
169
- 2
170
- 15
171
- 65
172
- 7
173
- 5
174
- 7
175
- 6
176
- 64
177
- 49
178
- 4
179
- 2
180
- 15
181
- 65
182
- 7
183
- 7
184
- 7
185
- 8
186
- 64
187
- 49
188
- 4
189
- 2
190
- 15
191
- 65
192
- 7
193
- 9
194
- 7
195
- 10
196
- 64
197
- 49
198
- 4
199
- 2
200
- 15
201
- 65
202
- 7
203
- 11
204
- 7
205
- 12
206
- 64
207
- 49
208
- 4
209
- 2
210
- 15
211
- 65
212
- 7
213
- 13
214
- 7
215
- 14
216
- 64
217
- 49
218
- 4
219
- 2
220
- 15
221
- 65
222
- 7
223
- 15
224
- 7
225
- 16
226
- 64
227
- 49
228
- 4
229
- 2
230
- 15
231
- 65
232
- 7
233
- 17
234
- 7
235
- 18
236
- 64
237
- 49
238
- 4
239
- 2
240
- 11
241
- I
242
- 4
243
- I
244
- 0
245
- I
246
- 0
247
- I
248
- 0
249
- n
250
- p
251
- 19
252
- x
253
- 5
254
- PRINT
255
- x
256
- 16
257
- vm_const_defined
258
- s
259
- 8
260
- constant
261
- s
262
- 1
263
- .
264
- x
265
- 9
266
- const_set
267
- x
268
- 7
269
- COMMAND
270
- s
271
- 1
272
- C
273
- x
274
- 12
275
- CONFIRM_TRUE
276
- s
277
- 1
278
- Y
279
- x
280
- 13
281
- CONFIRM_FALSE
282
- s
283
- 1
284
- N
285
- x
286
- 13
287
- CONFIRM_REPLY
288
- s
289
- 1
290
- ?
291
- x
292
- 4
293
- QUIT
294
- s
295
- 1
296
- q
297
- x
298
- 6
299
- PROMPT
300
- s
301
- 1
302
- p
303
- x
304
- 7
305
- RESTART
306
- s
307
- 1
308
- r
309
- p
310
- 19
311
- I
312
- 2
313
- I
314
- 9
315
- I
316
- 22
317
- I
318
- a
319
- I
320
- 2c
321
- I
322
- b
323
- I
324
- 36
325
- I
326
- c
327
- I
328
- 40
329
- I
330
- d
331
- I
332
- 4a
333
- I
334
- e
335
- I
336
- 54
337
- I
338
- f
339
- I
340
- 5e
341
- I
342
- 10
343
- I
344
- 68
345
- I
346
- 11
347
- I
348
- 72
349
- x
350
- 61
351
- /home/rocky-rvm/.rvm/src/rbx-trepanning/interface/comcodes.rb
352
- p
353
- 0
354
- x
355
- 13
356
- attach_method
357
- p
358
- 3
359
- I
360
- 2
361
- I
362
- 8
363
- I
364
- 1c
365
- x
366
- 61
367
- /home/rocky-rvm/.rvm/src/rbx-trepanning/interface/comcodes.rb
368
- p
369
- 0
370
- x
371
- 13
372
- attach_method
373
- p
374
- 3
375
- I
376
- 0
377
- I
378
- 5
379
- I
380
- 1c
381
- x
382
- 61
383
- /home/rocky-rvm/.rvm/src/rbx-trepanning/interface/comcodes.rb
384
- p
385
- 0