rubybreaker 0.0.2 → 0.0.3

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.
Files changed (77) hide show
  1. data/NEWS +6 -46
  2. data/README.md +30 -19
  3. data/TODO +22 -20
  4. data/VERSION +1 -1
  5. data/bin/rubybreaker +11 -2
  6. data/lib/rubybreaker.rb +31 -11
  7. data/lib/rubybreaker/debug.rb +5 -49
  8. data/lib/rubybreaker/{context.rb → debug/context.rb} +0 -0
  9. data/lib/rubybreaker/debug/debug.rb +61 -0
  10. data/lib/rubybreaker/{error.rb → debug/error.rb} +1 -1
  11. data/lib/rubybreaker/runtime.rb +3 -2
  12. data/lib/rubybreaker/runtime/inspector.rb +20 -13
  13. data/lib/rubybreaker/runtime/monitor.rb +21 -13
  14. data/lib/rubybreaker/runtime/object_wrapper.rb +3 -1
  15. data/lib/rubybreaker/runtime/type_system.rb +3 -2
  16. data/lib/rubybreaker/test/testcase.rb +0 -1
  17. data/lib/rubybreaker/type/type.rb +1 -1
  18. data/lib/rubybreaker/type/type_grammar.treetop +1 -1
  19. data/lib/rubybreaker/type/type_unparser.rb +1 -1
  20. data/lib/rubybreaker/util.rb +3 -11
  21. data/test/integrated/tc_both_broken_breakable.rb +27 -0
  22. data/test/ts_integrated.rb +1 -0
  23. data/webpage/index.html +30 -19
  24. data/webpage/rdoc/RubyBreaker.html +127 -10
  25. data/webpage/rdoc/RubyBreaker/Breakable.html +1 -5
  26. data/webpage/rdoc/RubyBreaker/Broken.html +2 -6
  27. data/webpage/rdoc/RubyBreaker/Broken/BrokenEigen.html +3 -6
  28. data/webpage/rdoc/RubyBreaker/Context.html +6 -10
  29. data/webpage/rdoc/RubyBreaker/Errors.html +2 -6
  30. data/webpage/rdoc/RubyBreaker/Errors/InternalError.html +3 -7
  31. data/webpage/rdoc/RubyBreaker/Errors/InvalidSubtypeCheck.html +3 -7
  32. data/webpage/rdoc/RubyBreaker/Errors/InvalidTypeConstruction.html +2 -6
  33. data/webpage/rdoc/RubyBreaker/Errors/SubtypeFailure.html +2 -6
  34. data/webpage/rdoc/RubyBreaker/Errors/TypeError.html +3 -7
  35. data/webpage/rdoc/RubyBreaker/Errors/UserError.html +3 -7
  36. data/webpage/rdoc/RubyBreaker/Main.html +33 -20
  37. data/webpage/rdoc/RubyBreaker/ObjectPosition.html +4 -8
  38. data/webpage/rdoc/RubyBreaker/Position.html +7 -11
  39. data/webpage/rdoc/RubyBreaker/RubyTypeUtils.html +1 -5
  40. data/webpage/rdoc/RubyBreaker/Runtime.html +1 -5
  41. data/webpage/rdoc/RubyBreaker/Runtime/Inspector.html +25 -18
  42. data/webpage/rdoc/RubyBreaker/Runtime/MethodInfo.html +1 -5
  43. data/webpage/rdoc/RubyBreaker/Runtime/Monitor.html +4 -8
  44. data/webpage/rdoc/RubyBreaker/Runtime/MonitorInstaller.html +20 -43
  45. data/webpage/rdoc/RubyBreaker/Runtime/MonitorSwitch.html +7 -11
  46. data/webpage/rdoc/RubyBreaker/Runtime/MonitorUtils.html +6 -10
  47. data/webpage/rdoc/RubyBreaker/Runtime/ObjectWrapper.html +7 -11
  48. data/webpage/rdoc/RubyBreaker/Runtime/Pluggable.html +1 -5
  49. data/webpage/rdoc/RubyBreaker/Runtime/TypePlaceholder.html +1 -5
  50. data/webpage/rdoc/RubyBreaker/Runtime/TypeSigParser.html +1 -5
  51. data/webpage/rdoc/RubyBreaker/Runtime/TypeSystem.html +8 -12
  52. data/webpage/rdoc/RubyBreaker/TestCase.html +1 -6
  53. data/webpage/rdoc/RubyBreaker/TypeComparer.html +1 -5
  54. data/webpage/rdoc/RubyBreaker/TypeDefs.html +1 -5
  55. data/webpage/rdoc/RubyBreaker/TypeDefs/AnyType.html +1 -5
  56. data/webpage/rdoc/RubyBreaker/TypeDefs/BlockType.html +1 -5
  57. data/webpage/rdoc/RubyBreaker/TypeDefs/DuckType.html +1 -5
  58. data/webpage/rdoc/RubyBreaker/TypeDefs/FusionType.html +1 -5
  59. data/webpage/rdoc/RubyBreaker/TypeDefs/MethodListType.html +1 -5
  60. data/webpage/rdoc/RubyBreaker/TypeDefs/MethodType.html +1 -5
  61. data/webpage/rdoc/RubyBreaker/TypeDefs/NilType.html +1 -5
  62. data/webpage/rdoc/RubyBreaker/TypeDefs/NominalType.html +1 -5
  63. data/webpage/rdoc/RubyBreaker/TypeDefs/OptionalType.html +1 -5
  64. data/webpage/rdoc/RubyBreaker/TypeDefs/OrType.html +1 -5
  65. data/webpage/rdoc/RubyBreaker/TypeDefs/SelfType.html +1 -5
  66. data/webpage/rdoc/RubyBreaker/TypeDefs/Type.html +1 -5
  67. data/webpage/rdoc/RubyBreaker/TypeDefs/VarLengthType.html +1 -5
  68. data/webpage/rdoc/RubyBreaker/TypeUnparser.html +1 -5
  69. data/webpage/rdoc/RubyBreaker/Typing.html +1 -5
  70. data/webpage/rdoc/RubyBreaker/{Utilities.html → Util.html} +8 -9
  71. data/webpage/rdoc/created.rid +15 -14
  72. data/webpage/rdoc/index.html +1 -5
  73. data/webpage/rdoc/js/search_index.js +1 -1
  74. data/webpage/rdoc/table_of_contents.html +22 -36
  75. metadata +9 -7
  76. data/webpage/rdoc/RubyBreaker/Debug.html +0 -411
  77. data/webpage/rdoc/RubyBreaker/Kernel.html +0 -259
@@ -88,8 +88,6 @@
88
88
 
89
89
  <li><a href="../../RubyBreaker/Context.html">RubyBreaker::Context</a>
90
90
 
91
- <li><a href="../../RubyBreaker/Debug.html">RubyBreaker::Debug</a>
92
-
93
91
  <li><a href="../../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
94
92
 
95
93
  <li><a href="../../RubyBreaker/Errors/InternalError.html">RubyBreaker::Errors::InternalError</a>
@@ -104,8 +102,6 @@
104
102
 
105
103
  <li><a href="../../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
106
104
 
107
- <li><a href="../../RubyBreaker/Kernel.html">RubyBreaker::Kernel</a>
108
-
109
105
  <li><a href="../../RubyBreaker/Main.html">RubyBreaker::Main</a>
110
106
 
111
107
  <li><a href="../../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
@@ -174,7 +170,7 @@
174
170
 
175
171
  <li><a href="../../RubyBreaker/Typing.html">RubyBreaker::Typing</a>
176
172
 
177
- <li><a href="../../RubyBreaker/Utilities.html">RubyBreaker::Utilities</a>
173
+ <li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
178
174
 
179
175
  </ul>
180
176
  </nav>
@@ -118,8 +118,6 @@
118
118
 
119
119
  <li><a href="../../RubyBreaker/Context.html">RubyBreaker::Context</a>
120
120
 
121
- <li><a href="../../RubyBreaker/Debug.html">RubyBreaker::Debug</a>
122
-
123
121
  <li><a href="../../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
124
122
 
125
123
  <li><a href="../../RubyBreaker/Errors/InternalError.html">RubyBreaker::Errors::InternalError</a>
@@ -134,8 +132,6 @@
134
132
 
135
133
  <li><a href="../../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
136
134
 
137
- <li><a href="../../RubyBreaker/Kernel.html">RubyBreaker::Kernel</a>
138
-
139
135
  <li><a href="../../RubyBreaker/Main.html">RubyBreaker::Main</a>
140
136
 
141
137
  <li><a href="../../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
@@ -204,7 +200,7 @@
204
200
 
205
201
  <li><a href="../../RubyBreaker/Typing.html">RubyBreaker::Typing</a>
206
202
 
207
- <li><a href="../../RubyBreaker/Utilities.html">RubyBreaker::Utilities</a>
203
+ <li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
208
204
 
209
205
  </ul>
210
206
  </nav>
@@ -259,7 +255,7 @@ information.</p>
259
255
 
260
256
 
261
257
  <div class="method-source-code" id="after_method-source">
262
- <pre><span class="ruby-comment"># File lib/rubybreaker/runtime/type_system.rb, line 233</span>
258
+ <pre><span class="ruby-comment"># File lib/rubybreaker/runtime/type_system.rb, line 234</span>
263
259
  <span class="ruby-keyword">def</span> <span class="ruby-identifier">after_method</span>(<span class="ruby-identifier">obj</span>, <span class="ruby-identifier">meth_info</span>)
264
260
 
265
261
  <span class="ruby-identifier">is_obj_mod</span> = (<span class="ruby-identifier">obj</span>.<span class="ruby-identifier">class</span> <span class="ruby-operator">==</span> <span class="ruby-constant">Class</span> <span class="ruby-keyword">or</span> <span class="ruby-identifier">obj</span>.<span class="ruby-identifier">class</span> <span class="ruby-operator">==</span> <span class="ruby-constant">Module</span>)
@@ -271,7 +267,7 @@ information.</p>
271
267
  <span class="ruby-identifier">args</span> = <span class="ruby-identifier">meth_info</span>.<span class="ruby-identifier">args</span>
272
268
  <span class="ruby-identifier">blk</span> = <span class="ruby-identifier">meth_info</span>.<span class="ruby-identifier">blk</span>
273
269
 
274
- <span class="ruby-constant">Debug</span>.<span class="ruby-identifier">msg</span>(<span class="ruby-node">&quot;In module monitor_after #{meth_name}&quot;</span>)
270
+ <span class="ruby-constant">RubyBreaker</span>.<span class="ruby-identifier">log</span>(<span class="ruby-node">&quot;In module monitor_after #{meth_name}&quot;</span>)
275
271
 
276
272
  <span class="ruby-identifier">meth_type_map</span> = <span class="ruby-constant">Breakable</span><span class="ruby-operator">::</span><span class="ruby-constant">TYPE_PLACEHOLDER_MAP</span>[<span class="ruby-identifier">mod</span>].<span class="ruby-identifier">meth_type_map</span>
277
273
 
@@ -314,7 +310,7 @@ argument with the object wrapper.</p>
314
310
 
315
311
 
316
312
  <div class="method-source-code" id="before_method-source">
317
- <pre><span class="ruby-comment"># File lib/rubybreaker/runtime/type_system.rb, line 173</span>
313
+ <pre><span class="ruby-comment"># File lib/rubybreaker/runtime/type_system.rb, line 174</span>
318
314
  <span class="ruby-keyword">def</span> <span class="ruby-identifier">before_method</span>(<span class="ruby-identifier">obj</span>, <span class="ruby-identifier">meth_info</span>)
319
315
 
320
316
  <span class="ruby-identifier">is_obj_mod</span> = (<span class="ruby-identifier">obj</span>.<span class="ruby-identifier">class</span> <span class="ruby-operator">==</span> <span class="ruby-constant">Class</span> <span class="ruby-keyword">or</span> <span class="ruby-identifier">obj</span>.<span class="ruby-identifier">class</span> <span class="ruby-operator">==</span> <span class="ruby-constant">Module</span>)
@@ -337,7 +333,7 @@ argument with the object wrapper.</p>
337
333
  <span class="ruby-keyword">end</span>
338
334
  <span class="ruby-keyword">end</span>
339
335
 
340
- <span class="ruby-constant">Debug</span>.<span class="ruby-identifier">msg</span>(<span class="ruby-node">&quot;In module monitor_before #{meth_name}&quot;</span>)
336
+ <span class="ruby-constant">RubyBreaker</span>.<span class="ruby-identifier">log</span>(<span class="ruby-node">&quot;In module monitor_before #{meth_name}&quot;</span>)
341
337
 
342
338
  <span class="ruby-identifier">meth_type</span> = <span class="ruby-identifier">meth_type_map</span>[<span class="ruby-identifier">meth_name</span>]
343
339
 
@@ -404,7 +400,7 @@ argument with the object wrapper.</p>
404
400
 
405
401
 
406
402
  <div class="method-source-code" id="is_object_wrapped-3F-source">
407
- <pre><span class="ruby-comment"># File lib/rubybreaker/runtime/type_system.rb, line 29</span>
403
+ <pre><span class="ruby-comment"># File lib/rubybreaker/runtime/type_system.rb, line 30</span>
408
404
  <span class="ruby-keyword">def</span> <span class="ruby-identifier">is_object_wrapped?</span>(<span class="ruby-identifier">obj</span>)
409
405
  <span class="ruby-keyword">return</span> <span class="ruby-identifier">obj</span>.<span class="ruby-identifier">respond_to?</span>(<span class="ruby-constant">WRAPPED_INDICATOR</span>)
410
406
  <span class="ruby-keyword">end</span></pre>
@@ -477,7 +473,7 @@ method list type.</p>
477
473
 
478
474
 
479
475
  <div class="method-source-code" id="lub-source">
480
- <pre><span class="ruby-comment"># File lib/rubybreaker/runtime/type_system.rb, line 114</span>
476
+ <pre><span class="ruby-comment"># File lib/rubybreaker/runtime/type_system.rb, line 115</span>
481
477
  <span class="ruby-keyword">def</span> <span class="ruby-identifier">lub</span>(<span class="ruby-identifier">obj</span>, <span class="ruby-identifier">meth_type_map</span>, <span class="ruby-identifier">meth_name</span>, <span class="ruby-identifier">retval</span>, *<span class="ruby-identifier">args</span>, &amp;<span class="ruby-identifier">blk</span>)
482
478
 
483
479
  <span class="ruby-identifier">exist_meth_type</span> = <span class="ruby-identifier">meth_type_map</span>[<span class="ruby-identifier">meth_name</span>.<span class="ruby-identifier">to_sym</span>]
@@ -561,7 +557,7 @@ false.</p>
561
557
 
562
558
 
563
559
  <div class="method-source-code" id="lub_helper-source">
564
- <pre><span class="ruby-comment"># File lib/rubybreaker/runtime/type_system.rb, line 37</span>
560
+ <pre><span class="ruby-comment"># File lib/rubybreaker/runtime/type_system.rb, line 38</span>
565
561
  <span class="ruby-keyword">def</span> <span class="ruby-identifier">lub_helper</span>(<span class="ruby-identifier">exist_meth_type</span>, <span class="ruby-identifier">new_meth_type</span>)
566
562
 
567
563
  <span class="ruby-comment"># most restrictive for the given test cases. </span>
@@ -92,8 +92,6 @@
92
92
 
93
93
  <li><a href="../RubyBreaker/Context.html">RubyBreaker::Context</a>
94
94
 
95
- <li><a href="../RubyBreaker/Debug.html">RubyBreaker::Debug</a>
96
-
97
95
  <li><a href="../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
98
96
 
99
97
  <li><a href="../RubyBreaker/Errors/InternalError.html">RubyBreaker::Errors::InternalError</a>
@@ -108,8 +106,6 @@
108
106
 
109
107
  <li><a href="../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
110
108
 
111
- <li><a href="../RubyBreaker/Kernel.html">RubyBreaker::Kernel</a>
112
-
113
109
  <li><a href="../RubyBreaker/Main.html">RubyBreaker::Main</a>
114
110
 
115
111
  <li><a href="../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
@@ -178,7 +174,7 @@
178
174
 
179
175
  <li><a href="../RubyBreaker/Typing.html">RubyBreaker::Typing</a>
180
176
 
181
- <li><a href="../RubyBreaker/Utilities.html">RubyBreaker::Utilities</a>
177
+ <li><a href="../RubyBreaker/Util.html">RubyBreaker::Util</a>
182
178
 
183
179
  </ul>
184
180
  </nav>
@@ -238,7 +234,6 @@ href="TestCase.html">TestCase</a> class.</p>
238
234
  alias :__run :run
239
235
 
240
236
  def run(*args,&amp;blk)
241
- # RubyBreaker::Utilities.rb_print(&quot;Running &quot; + args[0].to_s)
242
237
  RubyBreaker::TestCase.setup()
243
238
  __run(*args,&amp;blk)
244
239
  RubyBreaker::TestCase.teardown()
@@ -100,8 +100,6 @@
100
100
 
101
101
  <li><a href="../RubyBreaker/Context.html">RubyBreaker::Context</a>
102
102
 
103
- <li><a href="../RubyBreaker/Debug.html">RubyBreaker::Debug</a>
104
-
105
103
  <li><a href="../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
106
104
 
107
105
  <li><a href="../RubyBreaker/Errors/InternalError.html">RubyBreaker::Errors::InternalError</a>
@@ -116,8 +114,6 @@
116
114
 
117
115
  <li><a href="../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
118
116
 
119
- <li><a href="../RubyBreaker/Kernel.html">RubyBreaker::Kernel</a>
120
-
121
117
  <li><a href="../RubyBreaker/Main.html">RubyBreaker::Main</a>
122
118
 
123
119
  <li><a href="../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
@@ -186,7 +182,7 @@
186
182
 
187
183
  <li><a href="../RubyBreaker/Typing.html">RubyBreaker::Typing</a>
188
184
 
189
- <li><a href="../RubyBreaker/Utilities.html">RubyBreaker::Utilities</a>
185
+ <li><a href="../RubyBreaker/Util.html">RubyBreaker::Util</a>
190
186
 
191
187
  </ul>
192
188
  </nav>
@@ -78,8 +78,6 @@
78
78
 
79
79
  <li><a href="../RubyBreaker/Context.html">RubyBreaker::Context</a>
80
80
 
81
- <li><a href="../RubyBreaker/Debug.html">RubyBreaker::Debug</a>
82
-
83
81
  <li><a href="../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
84
82
 
85
83
  <li><a href="../RubyBreaker/Errors/InternalError.html">RubyBreaker::Errors::InternalError</a>
@@ -94,8 +92,6 @@
94
92
 
95
93
  <li><a href="../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
96
94
 
97
- <li><a href="../RubyBreaker/Kernel.html">RubyBreaker::Kernel</a>
98
-
99
95
  <li><a href="../RubyBreaker/Main.html">RubyBreaker::Main</a>
100
96
 
101
97
  <li><a href="../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
@@ -164,7 +160,7 @@
164
160
 
165
161
  <li><a href="../RubyBreaker/Typing.html">RubyBreaker::Typing</a>
166
162
 
167
- <li><a href="../RubyBreaker/Utilities.html">RubyBreaker::Utilities</a>
163
+ <li><a href="../RubyBreaker/Util.html">RubyBreaker::Util</a>
168
164
 
169
165
  </ul>
170
166
  </nav>
@@ -94,8 +94,6 @@
94
94
 
95
95
  <li><a href="../../RubyBreaker/Context.html">RubyBreaker::Context</a>
96
96
 
97
- <li><a href="../../RubyBreaker/Debug.html">RubyBreaker::Debug</a>
98
-
99
97
  <li><a href="../../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
100
98
 
101
99
  <li><a href="../../RubyBreaker/Errors/InternalError.html">RubyBreaker::Errors::InternalError</a>
@@ -110,8 +108,6 @@
110
108
 
111
109
  <li><a href="../../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
112
110
 
113
- <li><a href="../../RubyBreaker/Kernel.html">RubyBreaker::Kernel</a>
114
-
115
111
  <li><a href="../../RubyBreaker/Main.html">RubyBreaker::Main</a>
116
112
 
117
113
  <li><a href="../../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
@@ -180,7 +176,7 @@
180
176
 
181
177
  <li><a href="../../RubyBreaker/Typing.html">RubyBreaker::Typing</a>
182
178
 
183
- <li><a href="../../RubyBreaker/Utilities.html">RubyBreaker::Utilities</a>
179
+ <li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
184
180
 
185
181
  </ul>
186
182
  </nav>
@@ -94,8 +94,6 @@
94
94
 
95
95
  <li><a href="../../RubyBreaker/Context.html">RubyBreaker::Context</a>
96
96
 
97
- <li><a href="../../RubyBreaker/Debug.html">RubyBreaker::Debug</a>
98
-
99
97
  <li><a href="../../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
100
98
 
101
99
  <li><a href="../../RubyBreaker/Errors/InternalError.html">RubyBreaker::Errors::InternalError</a>
@@ -110,8 +108,6 @@
110
108
 
111
109
  <li><a href="../../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
112
110
 
113
- <li><a href="../../RubyBreaker/Kernel.html">RubyBreaker::Kernel</a>
114
-
115
111
  <li><a href="../../RubyBreaker/Main.html">RubyBreaker::Main</a>
116
112
 
117
113
  <li><a href="../../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
@@ -180,7 +176,7 @@
180
176
 
181
177
  <li><a href="../../RubyBreaker/Typing.html">RubyBreaker::Typing</a>
182
178
 
183
- <li><a href="../../RubyBreaker/Utilities.html">RubyBreaker::Utilities</a>
179
+ <li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
184
180
 
185
181
  </ul>
186
182
  </nav>
@@ -96,8 +96,6 @@
96
96
 
97
97
  <li><a href="../../RubyBreaker/Context.html">RubyBreaker::Context</a>
98
98
 
99
- <li><a href="../../RubyBreaker/Debug.html">RubyBreaker::Debug</a>
100
-
101
99
  <li><a href="../../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
102
100
 
103
101
  <li><a href="../../RubyBreaker/Errors/InternalError.html">RubyBreaker::Errors::InternalError</a>
@@ -112,8 +110,6 @@
112
110
 
113
111
  <li><a href="../../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
114
112
 
115
- <li><a href="../../RubyBreaker/Kernel.html">RubyBreaker::Kernel</a>
116
-
117
113
  <li><a href="../../RubyBreaker/Main.html">RubyBreaker::Main</a>
118
114
 
119
115
  <li><a href="../../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
@@ -182,7 +178,7 @@
182
178
 
183
179
  <li><a href="../../RubyBreaker/Typing.html">RubyBreaker::Typing</a>
184
180
 
185
- <li><a href="../../RubyBreaker/Utilities.html">RubyBreaker::Utilities</a>
181
+ <li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
186
182
 
187
183
  </ul>
188
184
  </nav>
@@ -96,8 +96,6 @@
96
96
 
97
97
  <li><a href="../../RubyBreaker/Context.html">RubyBreaker::Context</a>
98
98
 
99
- <li><a href="../../RubyBreaker/Debug.html">RubyBreaker::Debug</a>
100
-
101
99
  <li><a href="../../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
102
100
 
103
101
  <li><a href="../../RubyBreaker/Errors/InternalError.html">RubyBreaker::Errors::InternalError</a>
@@ -112,8 +110,6 @@
112
110
 
113
111
  <li><a href="../../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
114
112
 
115
- <li><a href="../../RubyBreaker/Kernel.html">RubyBreaker::Kernel</a>
116
-
117
113
  <li><a href="../../RubyBreaker/Main.html">RubyBreaker::Main</a>
118
114
 
119
115
  <li><a href="../../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
@@ -182,7 +178,7 @@
182
178
 
183
179
  <li><a href="../../RubyBreaker/Typing.html">RubyBreaker::Typing</a>
184
180
 
185
- <li><a href="../../RubyBreaker/Utilities.html">RubyBreaker::Utilities</a>
181
+ <li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
186
182
 
187
183
  </ul>
188
184
  </nav>
@@ -94,8 +94,6 @@
94
94
 
95
95
  <li><a href="../../RubyBreaker/Context.html">RubyBreaker::Context</a>
96
96
 
97
- <li><a href="../../RubyBreaker/Debug.html">RubyBreaker::Debug</a>
98
-
99
97
  <li><a href="../../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
100
98
 
101
99
  <li><a href="../../RubyBreaker/Errors/InternalError.html">RubyBreaker::Errors::InternalError</a>
@@ -110,8 +108,6 @@
110
108
 
111
109
  <li><a href="../../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
112
110
 
113
- <li><a href="../../RubyBreaker/Kernel.html">RubyBreaker::Kernel</a>
114
-
115
111
  <li><a href="../../RubyBreaker/Main.html">RubyBreaker::Main</a>
116
112
 
117
113
  <li><a href="../../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
@@ -180,7 +176,7 @@
180
176
 
181
177
  <li><a href="../../RubyBreaker/Typing.html">RubyBreaker::Typing</a>
182
178
 
183
- <li><a href="../../RubyBreaker/Utilities.html">RubyBreaker::Utilities</a>
179
+ <li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
184
180
 
185
181
  </ul>
186
182
  </nav>
@@ -94,8 +94,6 @@
94
94
 
95
95
  <li><a href="../../RubyBreaker/Context.html">RubyBreaker::Context</a>
96
96
 
97
- <li><a href="../../RubyBreaker/Debug.html">RubyBreaker::Debug</a>
98
-
99
97
  <li><a href="../../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
100
98
 
101
99
  <li><a href="../../RubyBreaker/Errors/InternalError.html">RubyBreaker::Errors::InternalError</a>
@@ -110,8 +108,6 @@
110
108
 
111
109
  <li><a href="../../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
112
110
 
113
- <li><a href="../../RubyBreaker/Kernel.html">RubyBreaker::Kernel</a>
114
-
115
111
  <li><a href="../../RubyBreaker/Main.html">RubyBreaker::Main</a>
116
112
 
117
113
  <li><a href="../../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
@@ -180,7 +176,7 @@
180
176
 
181
177
  <li><a href="../../RubyBreaker/Typing.html">RubyBreaker::Typing</a>
182
178
 
183
- <li><a href="../../RubyBreaker/Utilities.html">RubyBreaker::Utilities</a>
179
+ <li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
184
180
 
185
181
  </ul>
186
182
  </nav>
@@ -94,8 +94,6 @@
94
94
 
95
95
  <li><a href="../../RubyBreaker/Context.html">RubyBreaker::Context</a>
96
96
 
97
- <li><a href="../../RubyBreaker/Debug.html">RubyBreaker::Debug</a>
98
-
99
97
  <li><a href="../../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
100
98
 
101
99
  <li><a href="../../RubyBreaker/Errors/InternalError.html">RubyBreaker::Errors::InternalError</a>
@@ -110,8 +108,6 @@
110
108
 
111
109
  <li><a href="../../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
112
110
 
113
- <li><a href="../../RubyBreaker/Kernel.html">RubyBreaker::Kernel</a>
114
-
115
111
  <li><a href="../../RubyBreaker/Main.html">RubyBreaker::Main</a>
116
112
 
117
113
  <li><a href="../../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
@@ -180,7 +176,7 @@
180
176
 
181
177
  <li><a href="../../RubyBreaker/Typing.html">RubyBreaker::Typing</a>
182
178
 
183
- <li><a href="../../RubyBreaker/Utilities.html">RubyBreaker::Utilities</a>
179
+ <li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
184
180
 
185
181
  </ul>
186
182
  </nav>
@@ -94,8 +94,6 @@
94
94
 
95
95
  <li><a href="../../RubyBreaker/Context.html">RubyBreaker::Context</a>
96
96
 
97
- <li><a href="../../RubyBreaker/Debug.html">RubyBreaker::Debug</a>
98
-
99
97
  <li><a href="../../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
100
98
 
101
99
  <li><a href="../../RubyBreaker/Errors/InternalError.html">RubyBreaker::Errors::InternalError</a>
@@ -110,8 +108,6 @@
110
108
 
111
109
  <li><a href="../../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
112
110
 
113
- <li><a href="../../RubyBreaker/Kernel.html">RubyBreaker::Kernel</a>
114
-
115
111
  <li><a href="../../RubyBreaker/Main.html">RubyBreaker::Main</a>
116
112
 
117
113
  <li><a href="../../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
@@ -180,7 +176,7 @@
180
176
 
181
177
  <li><a href="../../RubyBreaker/Typing.html">RubyBreaker::Typing</a>
182
178
 
183
- <li><a href="../../RubyBreaker/Utilities.html">RubyBreaker::Utilities</a>
179
+ <li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
184
180
 
185
181
  </ul>
186
182
  </nav>
@@ -94,8 +94,6 @@
94
94
 
95
95
  <li><a href="../../RubyBreaker/Context.html">RubyBreaker::Context</a>
96
96
 
97
- <li><a href="../../RubyBreaker/Debug.html">RubyBreaker::Debug</a>
98
-
99
97
  <li><a href="../../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
100
98
 
101
99
  <li><a href="../../RubyBreaker/Errors/InternalError.html">RubyBreaker::Errors::InternalError</a>
@@ -110,8 +108,6 @@
110
108
 
111
109
  <li><a href="../../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
112
110
 
113
- <li><a href="../../RubyBreaker/Kernel.html">RubyBreaker::Kernel</a>
114
-
115
111
  <li><a href="../../RubyBreaker/Main.html">RubyBreaker::Main</a>
116
112
 
117
113
  <li><a href="../../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
@@ -180,7 +176,7 @@
180
176
 
181
177
  <li><a href="../../RubyBreaker/Typing.html">RubyBreaker::Typing</a>
182
178
 
183
- <li><a href="../../RubyBreaker/Utilities.html">RubyBreaker::Utilities</a>
179
+ <li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
184
180
 
185
181
  </ul>
186
182
  </nav>
@@ -94,8 +94,6 @@
94
94
 
95
95
  <li><a href="../../RubyBreaker/Context.html">RubyBreaker::Context</a>
96
96
 
97
- <li><a href="../../RubyBreaker/Debug.html">RubyBreaker::Debug</a>
98
-
99
97
  <li><a href="../../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
100
98
 
101
99
  <li><a href="../../RubyBreaker/Errors/InternalError.html">RubyBreaker::Errors::InternalError</a>
@@ -110,8 +108,6 @@
110
108
 
111
109
  <li><a href="../../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
112
110
 
113
- <li><a href="../../RubyBreaker/Kernel.html">RubyBreaker::Kernel</a>
114
-
115
111
  <li><a href="../../RubyBreaker/Main.html">RubyBreaker::Main</a>
116
112
 
117
113
  <li><a href="../../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
@@ -180,7 +176,7 @@
180
176
 
181
177
  <li><a href="../../RubyBreaker/Typing.html">RubyBreaker::Typing</a>
182
178
 
183
- <li><a href="../../RubyBreaker/Utilities.html">RubyBreaker::Utilities</a>
179
+ <li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
184
180
 
185
181
  </ul>
186
182
  </nav>