rubybreaker 0.0.4 → 0.0.5
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/NEWS +5 -0
- data/NOTES +9 -0
- data/README.md +100 -183
- data/Rakefile +21 -6
- data/VERSION +1 -1
- data/bin/rubybreaker +34 -50
- data/lib/rubybreaker/debug/debug.rb +6 -0
- data/lib/rubybreaker/doc/rdoc.rb +37 -0
- data/lib/rubybreaker/doc.rb +3 -0
- data/lib/rubybreaker/runtime/inspector.rb +6 -28
- data/lib/rubybreaker/runtime/monitor.rb +21 -17
- data/lib/rubybreaker/runtime/object_wrapper.rb +7 -2
- data/lib/rubybreaker/runtime/type_system.rb +3 -5
- data/lib/rubybreaker/runtime/typesig_unparser.rb +1 -4
- data/lib/rubybreaker/runtime.rb +64 -105
- data/lib/rubybreaker/task.rb +97 -0
- data/lib/rubybreaker/test/rspec.rb +1 -1
- data/lib/rubybreaker/test/testcase.rb +13 -28
- data/lib/rubybreaker/type/type.rb +1 -1
- data/lib/rubybreaker/typing/subtyping.rb +10 -5
- data/lib/rubybreaker/util.rb +0 -1
- data/lib/rubybreaker.rb +163 -115
- data/test/integrated/tc_both_broken_breakable.rb +5 -4
- data/test/integrated/tc_class_methods.rb +4 -3
- data/test/integrated/tc_inherit_broken.rb +4 -3
- data/test/integrated/tc_method_missing.rb +4 -4
- data/test/integrated/tc_namespace.rb +4 -2
- data/test/integrated/tc_simple1.rb +4 -3
- data/test/runtime/tc_obj_wrapper.rb +25 -6
- data/test/runtime/tc_typesig_parser.rb +0 -1
- data/test/testtask/sample.rb +10 -0
- data/test/testtask/tc_testtask.rb +25 -0
- data/test/ts_rspec.rb +21 -15
- data/test/typing/tc_typing.rb +2 -3
- data/webpage/index.html +105 -193
- data/webpage/rdoc/Kernel.html +286 -0
- data/webpage/rdoc/Object.html +17 -11
- data/webpage/rdoc/Rake/RubyBreakerTestTask.html +374 -0
- data/webpage/rdoc/Rake.html +212 -0
- data/webpage/rdoc/RubyBreaker/Breakable.html +24 -40
- data/webpage/rdoc/RubyBreaker/Broken.html +21 -69
- data/webpage/rdoc/RubyBreaker/Context.html +16 -10
- data/webpage/rdoc/RubyBreaker/Errors/InternalError.html +16 -10
- data/webpage/rdoc/RubyBreaker/Errors/InvalidSubtypeCheck.html +16 -10
- data/webpage/rdoc/RubyBreaker/Errors/InvalidTypeConstruction.html +16 -10
- data/webpage/rdoc/RubyBreaker/Errors/SubtypeFailure.html +16 -10
- data/webpage/rdoc/RubyBreaker/Errors/TypeError.html +16 -10
- data/webpage/rdoc/RubyBreaker/Errors/UserError.html +16 -10
- data/webpage/rdoc/RubyBreaker/Errors.html +16 -10
- data/webpage/rdoc/RubyBreaker/ObjectPosition.html +16 -10
- data/webpage/rdoc/RubyBreaker/Position.html +16 -10
- data/webpage/rdoc/RubyBreaker/{TestCase.html → RDocSupport.html} +81 -82
- data/webpage/rdoc/RubyBreaker/RubyTypeUtils.html +16 -10
- data/webpage/rdoc/RubyBreaker/Runtime/Inspector.html +25 -44
- data/webpage/rdoc/RubyBreaker/Runtime/MethodInfo.html +16 -10
- data/webpage/rdoc/RubyBreaker/Runtime/Monitor.html +19 -13
- data/webpage/rdoc/RubyBreaker/Runtime/MonitorInstaller.html +37 -25
- data/webpage/rdoc/RubyBreaker/Runtime/MonitorSwitch.html +20 -14
- data/webpage/rdoc/RubyBreaker/Runtime/MonitorUtils.html +21 -15
- data/webpage/rdoc/RubyBreaker/Runtime/ObjectWrapper.html +23 -12
- data/webpage/rdoc/RubyBreaker/Runtime/Pluggable.html +16 -10
- data/webpage/rdoc/RubyBreaker/Runtime/TypeSigParser.html +16 -10
- data/webpage/rdoc/RubyBreaker/Runtime/{TypesigUnparser.html → TypeSigUnparser.html} +19 -16
- data/webpage/rdoc/RubyBreaker/Runtime/TypeSystem.html +18 -14
- data/webpage/rdoc/RubyBreaker/Runtime.html +145 -11
- data/webpage/rdoc/RubyBreaker/TypeComparer.html +16 -10
- data/webpage/rdoc/RubyBreaker/TypeDefs/AnyType.html +16 -10
- data/webpage/rdoc/RubyBreaker/TypeDefs/BlockType.html +16 -10
- data/webpage/rdoc/RubyBreaker/TypeDefs/DuckType.html +16 -10
- data/webpage/rdoc/RubyBreaker/TypeDefs/FusionType.html +16 -10
- data/webpage/rdoc/RubyBreaker/TypeDefs/MethodListType.html +16 -10
- data/webpage/rdoc/RubyBreaker/TypeDefs/MethodType.html +16 -10
- data/webpage/rdoc/RubyBreaker/TypeDefs/NilType.html +16 -10
- data/webpage/rdoc/RubyBreaker/TypeDefs/NominalType.html +16 -10
- data/webpage/rdoc/RubyBreaker/TypeDefs/OptionalType.html +16 -10
- data/webpage/rdoc/RubyBreaker/TypeDefs/OrType.html +16 -10
- data/webpage/rdoc/RubyBreaker/TypeDefs/SelfType.html +17 -11
- data/webpage/rdoc/RubyBreaker/TypeDefs/Type.html +17 -11
- data/webpage/rdoc/RubyBreaker/TypeDefs/VarLengthType.html +16 -10
- data/webpage/rdoc/RubyBreaker/TypeDefs.html +16 -10
- data/webpage/rdoc/RubyBreaker/TypeUnparser.html +16 -10
- data/webpage/rdoc/RubyBreaker/Typing.html +17 -11
- data/webpage/rdoc/RubyBreaker/Util.html +16 -10
- data/webpage/rdoc/RubyBreaker.html +167 -34
- data/webpage/rdoc/{RubyBreaker/Runtime/TypePlaceholder.html → Test/Unit/TestCase.html} +68 -39
- data/webpage/rdoc/Test/Unit.html +211 -0
- data/webpage/rdoc/Test.html +211 -0
- data/webpage/rdoc/created.rid +18 -17
- data/webpage/rdoc/index.html +16 -10
- data/webpage/rdoc/js/search_index.js +1 -1
- data/webpage/rdoc/table_of_contents.html +61 -48
- metadata +21 -12
- data/lib/rubybreaker/rubylib/core.rb +0 -2483
- data/lib/rubybreaker/rubylib.rb +0 -3
- data/lib/rubybreaker/runtime/type_placeholder.rb +0 -23
- data/webpage/rdoc/RubyBreaker/Broken/BrokenEigen.html +0 -305
- data/webpage/rdoc/RubyBreaker/Main.html +0 -458
|
@@ -52,11 +52,11 @@
|
|
|
52
52
|
<li>lib/rubybreaker/runtime/object_wrapper.rb
|
|
53
53
|
<li>lib/rubybreaker/runtime/overrides.rb
|
|
54
54
|
<li>lib/rubybreaker/runtime/pluggable.rb
|
|
55
|
-
<li>lib/rubybreaker/runtime/type_placeholder.rb
|
|
56
55
|
<li>lib/rubybreaker/runtime/type_system.rb
|
|
57
56
|
<li>lib/rubybreaker/runtime/typesig_parser.rb
|
|
58
57
|
<li>lib/rubybreaker/runtime/typesig_unparser.rb
|
|
59
58
|
<li>lib/rubybreaker/runtime/util.rb
|
|
59
|
+
<li>lib/rubybreaker/runtime.rb
|
|
60
60
|
</ul>
|
|
61
61
|
</nav>
|
|
62
62
|
|
|
@@ -67,7 +67,19 @@
|
|
|
67
67
|
|
|
68
68
|
|
|
69
69
|
|
|
70
|
+
<!-- Method Quickref -->
|
|
71
|
+
<nav id="method-list-section" class="section">
|
|
72
|
+
<h3 class="section-header">Methods</h3>
|
|
73
|
+
|
|
74
|
+
<ul class="link-list">
|
|
75
|
+
|
|
76
|
+
<li><a href="#method-c-breakable">::breakable</a>
|
|
77
|
+
|
|
78
|
+
<li><a href="#method-c-instrument">::instrument</a>
|
|
70
79
|
|
|
80
|
+
</ul>
|
|
81
|
+
</nav>
|
|
82
|
+
|
|
71
83
|
</div>
|
|
72
84
|
|
|
73
85
|
<div id="project-metadata">
|
|
@@ -83,8 +95,6 @@
|
|
|
83
95
|
|
|
84
96
|
<li><a href="../RubyBreaker/Broken.html">RubyBreaker::Broken</a>
|
|
85
97
|
|
|
86
|
-
<li><a href="../RubyBreaker/Broken/BrokenEigen.html">RubyBreaker::Broken::BrokenEigen</a>
|
|
87
|
-
|
|
88
98
|
<li><a href="../RubyBreaker/Context.html">RubyBreaker::Context</a>
|
|
89
99
|
|
|
90
100
|
<li><a href="../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
|
|
@@ -101,12 +111,12 @@
|
|
|
101
111
|
|
|
102
112
|
<li><a href="../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
|
|
103
113
|
|
|
104
|
-
<li><a href="../RubyBreaker/Main.html">RubyBreaker::Main</a>
|
|
105
|
-
|
|
106
114
|
<li><a href="../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
|
|
107
115
|
|
|
108
116
|
<li><a href="../RubyBreaker/Position.html">RubyBreaker::Position</a>
|
|
109
117
|
|
|
118
|
+
<li><a href="../RubyBreaker/RDocSupport.html">RubyBreaker::RDocSupport</a>
|
|
119
|
+
|
|
110
120
|
<li><a href="../RubyBreaker/RubyTypeUtils.html">RubyBreaker::RubyTypeUtils</a>
|
|
111
121
|
|
|
112
122
|
<li><a href="../RubyBreaker/Runtime.html">RubyBreaker::Runtime</a>
|
|
@@ -127,15 +137,11 @@
|
|
|
127
137
|
|
|
128
138
|
<li><a href="../RubyBreaker/Runtime/Pluggable.html">RubyBreaker::Runtime::Pluggable</a>
|
|
129
139
|
|
|
130
|
-
<li><a href="../RubyBreaker/Runtime/TypePlaceholder.html">RubyBreaker::Runtime::TypePlaceholder</a>
|
|
131
|
-
|
|
132
140
|
<li><a href="../RubyBreaker/Runtime/TypeSigParser.html">RubyBreaker::Runtime::TypeSigParser</a>
|
|
133
141
|
|
|
134
|
-
<li><a href="../RubyBreaker/Runtime/
|
|
135
|
-
|
|
136
|
-
<li><a href="../RubyBreaker/Runtime/TypesigUnparser.html">RubyBreaker::Runtime::TypesigUnparser</a>
|
|
142
|
+
<li><a href="../RubyBreaker/Runtime/TypeSigUnparser.html">RubyBreaker::Runtime::TypeSigUnparser</a>
|
|
137
143
|
|
|
138
|
-
<li><a href="../RubyBreaker/
|
|
144
|
+
<li><a href="../RubyBreaker/Runtime/TypeSystem.html">RubyBreaker::Runtime::TypeSystem</a>
|
|
139
145
|
|
|
140
146
|
<li><a href="../RubyBreaker/TypeComparer.html">RubyBreaker::TypeComparer</a>
|
|
141
147
|
|
|
@@ -173,6 +179,18 @@
|
|
|
173
179
|
|
|
174
180
|
<li><a href="../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
175
181
|
|
|
182
|
+
<li><a href="../Test.html">Test</a>
|
|
183
|
+
|
|
184
|
+
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
185
|
+
|
|
186
|
+
<li><a href="../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
187
|
+
|
|
188
|
+
<li><a href="../Rake.html">Rake</a>
|
|
189
|
+
|
|
190
|
+
<li><a href="../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
191
|
+
|
|
192
|
+
<li><a href="../Kernel.html">Kernel</a>
|
|
193
|
+
|
|
176
194
|
<li><a href="../Object.html">Object</a>
|
|
177
195
|
|
|
178
196
|
</ul>
|
|
@@ -202,6 +220,12 @@
|
|
|
202
220
|
<h3 class="section-header">Constants</h3>
|
|
203
221
|
<dl>
|
|
204
222
|
|
|
223
|
+
<dt id="BREAKABLES">BREAKABLES
|
|
224
|
+
|
|
225
|
+
<dd class="description"><p>This set keeps track of modules/classes that will be monitored.
|
|
226
|
+
<strong>DEPRECATED</strong> : Use <code>breakable</code> method instead.</p>
|
|
227
|
+
|
|
228
|
+
|
|
205
229
|
<dt id="CONTEXT">CONTEXT
|
|
206
230
|
|
|
207
231
|
<dd class="description"><p>This context is used for keeping track of context in the user code. This
|
|
@@ -224,12 +248,30 @@ for module tracking in which case, there isn’t really a way to do this
|
|
|
224
248
|
unless we track with the process or some unique id for that process.</p>
|
|
225
249
|
|
|
226
250
|
|
|
251
|
+
<dt id="INSTALLED">INSTALLED
|
|
252
|
+
|
|
253
|
+
<dd class="description"><p>This set lists modules/classes that are actually instrumented with a
|
|
254
|
+
monitor.</p>
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
<dt id="MONITOR_MAP">MONITOR_MAP
|
|
258
|
+
|
|
259
|
+
<dd class="description"><p>This hash maps a (breakable) module to a type monitor</p>
|
|
260
|
+
|
|
261
|
+
|
|
227
262
|
<dt id="OVERRIDE_PREFIX">OVERRIDE_PREFIX
|
|
228
263
|
|
|
229
264
|
<dd class="description"><p>This constant holds the string used internally by <a
|
|
230
265
|
href="../RubyBreaker.html">RubyBreaker</a> to indicate overridden methods.</p>
|
|
231
266
|
|
|
232
267
|
|
|
268
|
+
<dt id="TYPE_MAP">TYPE_MAP
|
|
269
|
+
|
|
270
|
+
<dd class="description"><p>This hash maps a module to a nested hash that maps a method name to a
|
|
271
|
+
method type. This hash is shared between breakable modules/classes and
|
|
272
|
+
non-breakable modules/classes.</p>
|
|
273
|
+
|
|
274
|
+
|
|
233
275
|
<dt id="WRAPPED_INDICATOR">WRAPPED_INDICATOR
|
|
234
276
|
|
|
235
277
|
<dd class="description"><p>This constant is used to determine if an object is a wrapped object.</p>
|
|
@@ -243,6 +285,98 @@ href="../RubyBreaker.html">RubyBreaker</a> to indicate overridden methods.</p>
|
|
|
243
285
|
|
|
244
286
|
<!-- Methods -->
|
|
245
287
|
|
|
288
|
+
<section id="public-class-5Buntitled-5D-method-details" class="method-section section">
|
|
289
|
+
<h3 class="section-header">Public Class Methods</h3>
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
<div id="method-c-breakable" class="method-detail ">
|
|
293
|
+
|
|
294
|
+
<div class="method-heading">
|
|
295
|
+
<span class="method-name">breakable</span><span
|
|
296
|
+
class="method-args">(*mods)</span>
|
|
297
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
298
|
+
</div>
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
<div class="method-description">
|
|
302
|
+
|
|
303
|
+
<p>This method modifies specified modules/classes at the very moment (instead
|
|
304
|
+
of registering them for later).</p>
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
<div class="method-source-code" id="breakable-source">
|
|
309
|
+
<pre><span class="ruby-comment"># File lib/rubybreaker/runtime.rb, line 43</span>
|
|
310
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">breakable</span>(*<span class="ruby-identifier">mods</span>)
|
|
311
|
+
<span class="ruby-identifier">mods</span>.<span class="ruby-identifier">each</span> <span class="ruby-keyword">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">mod</span><span class="ruby-operator">|</span>
|
|
312
|
+
<span class="ruby-keyword">case</span> <span class="ruby-identifier">mod</span>
|
|
313
|
+
<span class="ruby-keyword">when</span> <span class="ruby-constant">Array</span>
|
|
314
|
+
<span class="ruby-keyword">self</span>.<span class="ruby-identifier">breakable</span>(*<span class="ruby-identifier">mod</span>)
|
|
315
|
+
<span class="ruby-keyword">when</span> <span class="ruby-constant">Module</span>, <span class="ruby-constant">Class</span>
|
|
316
|
+
<span class="ruby-constant">MonitorInstaller</span>.<span class="ruby-identifier">install_module_monitor</span>(<span class="ruby-identifier">mod</span>)
|
|
317
|
+
<span class="ruby-identifier">eigen_class</span> = <span class="ruby-keyword">self</span>.<span class="ruby-identifier">eigen_class</span>(<span class="ruby-identifier">mod</span>)
|
|
318
|
+
<span class="ruby-constant">MonitorInstaller</span>.<span class="ruby-identifier">install_module_monitor</span>(<span class="ruby-identifier">eigen_class</span>)
|
|
319
|
+
<span class="ruby-constant">INSTALLED</span> <span class="ruby-operator"><<</span> <span class="ruby-identifier">mod</span> <span class="ruby-operator"><<</span> <span class="ruby-identifier">eigen_class</span>
|
|
320
|
+
<span class="ruby-keyword">when</span> <span class="ruby-constant">String</span>, <span class="ruby-constant">Symbol</span>
|
|
321
|
+
<span class="ruby-keyword">begin</span>
|
|
322
|
+
<span class="ruby-comment"># Get the actual module and install it right now</span>
|
|
323
|
+
<span class="ruby-identifier">mod</span> = <span class="ruby-identifier">eval</span>(<span class="ruby-node">"#{mod}"</span>, <span class="ruby-constant">TOPLEVEL_BINDING</span>)
|
|
324
|
+
<span class="ruby-keyword">self</span>.<span class="ruby-identifier">breakable</span>(<span class="ruby-identifier">mod</span>) <span class="ruby-keyword">if</span> <span class="ruby-identifier">mod</span>
|
|
325
|
+
<span class="ruby-keyword">rescue</span> <span class="ruby-constant">NameError</span> =<span class="ruby-operator">></span> <span class="ruby-identifier">e</span>
|
|
326
|
+
<span class="ruby-constant">RubyBreaker</span>.<span class="ruby-identifier">error</span>(<span class="ruby-node">"#{mod} cannot be found."</span>)
|
|
327
|
+
<span class="ruby-keyword">end</span>
|
|
328
|
+
<span class="ruby-keyword">else</span>
|
|
329
|
+
<span class="ruby-constant">RubyBreaker</span>.<span class="ruby-identifier">error</span>(<span class="ruby-string">"You must specify a module/class or its name."</span>)
|
|
330
|
+
<span class="ruby-keyword">end</span>
|
|
331
|
+
<span class="ruby-keyword">end</span>
|
|
332
|
+
<span class="ruby-keyword">end</span></pre>
|
|
333
|
+
</div><!-- breakable-source -->
|
|
334
|
+
|
|
335
|
+
</div>
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
</div><!-- breakable-method -->
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
<div id="method-c-instrument" class="method-detail ">
|
|
344
|
+
|
|
345
|
+
<div class="method-heading">
|
|
346
|
+
<span class="method-name">instrument</span><span
|
|
347
|
+
class="method-args">()</span>
|
|
348
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
349
|
+
</div>
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
<div class="method-description">
|
|
353
|
+
|
|
354
|
+
<p>This method installs a monitor for each breakable module.
|
|
355
|
+
<strong>DEPRECATED</strong>: Use +breakable()+ method instead.</p>
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
<div class="method-source-code" id="instrument-source">
|
|
360
|
+
<pre><span class="ruby-comment"># File lib/rubybreaker/runtime.rb, line 33</span>
|
|
361
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">instrument</span>()
|
|
362
|
+
<span class="ruby-constant">BREAKABLES</span>.<span class="ruby-identifier">each</span> <span class="ruby-keyword">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">mod</span><span class="ruby-operator">|</span>
|
|
363
|
+
<span class="ruby-comment"># Duplicate checks in place in these calls.</span>
|
|
364
|
+
<span class="ruby-constant">MonitorInstaller</span>.<span class="ruby-identifier">install_module_monitor</span>(<span class="ruby-identifier">mod</span>)
|
|
365
|
+
<span class="ruby-constant">INSTALLED</span> <span class="ruby-operator"><<</span> <span class="ruby-identifier">mod</span>
|
|
366
|
+
<span class="ruby-keyword">end</span>
|
|
367
|
+
<span class="ruby-keyword">end</span></pre>
|
|
368
|
+
</div><!-- instrument-source -->
|
|
369
|
+
|
|
370
|
+
</div>
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
</div><!-- instrument-method -->
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
</section><!-- public-class-method-details -->
|
|
379
|
+
|
|
246
380
|
</section><!-- 5Buntitled-5D -->
|
|
247
381
|
|
|
248
382
|
</div><!-- documentation -->
|
|
@@ -96,8 +96,6 @@
|
|
|
96
96
|
|
|
97
97
|
<li><a href="../RubyBreaker/Broken.html">RubyBreaker::Broken</a>
|
|
98
98
|
|
|
99
|
-
<li><a href="../RubyBreaker/Broken/BrokenEigen.html">RubyBreaker::Broken::BrokenEigen</a>
|
|
100
|
-
|
|
101
99
|
<li><a href="../RubyBreaker/Context.html">RubyBreaker::Context</a>
|
|
102
100
|
|
|
103
101
|
<li><a href="../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
|
|
@@ -114,12 +112,12 @@
|
|
|
114
112
|
|
|
115
113
|
<li><a href="../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
|
|
116
114
|
|
|
117
|
-
<li><a href="../RubyBreaker/Main.html">RubyBreaker::Main</a>
|
|
118
|
-
|
|
119
115
|
<li><a href="../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
|
|
120
116
|
|
|
121
117
|
<li><a href="../RubyBreaker/Position.html">RubyBreaker::Position</a>
|
|
122
118
|
|
|
119
|
+
<li><a href="../RubyBreaker/RDocSupport.html">RubyBreaker::RDocSupport</a>
|
|
120
|
+
|
|
123
121
|
<li><a href="../RubyBreaker/RubyTypeUtils.html">RubyBreaker::RubyTypeUtils</a>
|
|
124
122
|
|
|
125
123
|
<li><a href="../RubyBreaker/Runtime.html">RubyBreaker::Runtime</a>
|
|
@@ -140,15 +138,11 @@
|
|
|
140
138
|
|
|
141
139
|
<li><a href="../RubyBreaker/Runtime/Pluggable.html">RubyBreaker::Runtime::Pluggable</a>
|
|
142
140
|
|
|
143
|
-
<li><a href="../RubyBreaker/Runtime/TypePlaceholder.html">RubyBreaker::Runtime::TypePlaceholder</a>
|
|
144
|
-
|
|
145
141
|
<li><a href="../RubyBreaker/Runtime/TypeSigParser.html">RubyBreaker::Runtime::TypeSigParser</a>
|
|
146
142
|
|
|
147
|
-
<li><a href="../RubyBreaker/Runtime/
|
|
148
|
-
|
|
149
|
-
<li><a href="../RubyBreaker/Runtime/TypesigUnparser.html">RubyBreaker::Runtime::TypesigUnparser</a>
|
|
143
|
+
<li><a href="../RubyBreaker/Runtime/TypeSigUnparser.html">RubyBreaker::Runtime::TypeSigUnparser</a>
|
|
150
144
|
|
|
151
|
-
<li><a href="../RubyBreaker/
|
|
145
|
+
<li><a href="../RubyBreaker/Runtime/TypeSystem.html">RubyBreaker::Runtime::TypeSystem</a>
|
|
152
146
|
|
|
153
147
|
<li><a href="../RubyBreaker/TypeComparer.html">RubyBreaker::TypeComparer</a>
|
|
154
148
|
|
|
@@ -186,6 +180,18 @@
|
|
|
186
180
|
|
|
187
181
|
<li><a href="../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
188
182
|
|
|
183
|
+
<li><a href="../Test.html">Test</a>
|
|
184
|
+
|
|
185
|
+
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
186
|
+
|
|
187
|
+
<li><a href="../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
188
|
+
|
|
189
|
+
<li><a href="../Rake.html">Rake</a>
|
|
190
|
+
|
|
191
|
+
<li><a href="../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
192
|
+
|
|
193
|
+
<li><a href="../Kernel.html">Kernel</a>
|
|
194
|
+
|
|
189
195
|
<li><a href="../Object.html">Object</a>
|
|
190
196
|
|
|
191
197
|
</ul>
|
|
@@ -90,8 +90,6 @@
|
|
|
90
90
|
|
|
91
91
|
<li><a href="../../RubyBreaker/Broken.html">RubyBreaker::Broken</a>
|
|
92
92
|
|
|
93
|
-
<li><a href="../../RubyBreaker/Broken/BrokenEigen.html">RubyBreaker::Broken::BrokenEigen</a>
|
|
94
|
-
|
|
95
93
|
<li><a href="../../RubyBreaker/Context.html">RubyBreaker::Context</a>
|
|
96
94
|
|
|
97
95
|
<li><a href="../../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
|
|
@@ -108,12 +106,12 @@
|
|
|
108
106
|
|
|
109
107
|
<li><a href="../../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
|
|
110
108
|
|
|
111
|
-
<li><a href="../../RubyBreaker/Main.html">RubyBreaker::Main</a>
|
|
112
|
-
|
|
113
109
|
<li><a href="../../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
|
|
114
110
|
|
|
115
111
|
<li><a href="../../RubyBreaker/Position.html">RubyBreaker::Position</a>
|
|
116
112
|
|
|
113
|
+
<li><a href="../../RubyBreaker/RDocSupport.html">RubyBreaker::RDocSupport</a>
|
|
114
|
+
|
|
117
115
|
<li><a href="../../RubyBreaker/RubyTypeUtils.html">RubyBreaker::RubyTypeUtils</a>
|
|
118
116
|
|
|
119
117
|
<li><a href="../../RubyBreaker/Runtime.html">RubyBreaker::Runtime</a>
|
|
@@ -134,15 +132,11 @@
|
|
|
134
132
|
|
|
135
133
|
<li><a href="../../RubyBreaker/Runtime/Pluggable.html">RubyBreaker::Runtime::Pluggable</a>
|
|
136
134
|
|
|
137
|
-
<li><a href="../../RubyBreaker/Runtime/TypePlaceholder.html">RubyBreaker::Runtime::TypePlaceholder</a>
|
|
138
|
-
|
|
139
135
|
<li><a href="../../RubyBreaker/Runtime/TypeSigParser.html">RubyBreaker::Runtime::TypeSigParser</a>
|
|
140
136
|
|
|
141
|
-
<li><a href="../../RubyBreaker/Runtime/
|
|
142
|
-
|
|
143
|
-
<li><a href="../../RubyBreaker/Runtime/TypesigUnparser.html">RubyBreaker::Runtime::TypesigUnparser</a>
|
|
137
|
+
<li><a href="../../RubyBreaker/Runtime/TypeSigUnparser.html">RubyBreaker::Runtime::TypeSigUnparser</a>
|
|
144
138
|
|
|
145
|
-
<li><a href="../../RubyBreaker/
|
|
139
|
+
<li><a href="../../RubyBreaker/Runtime/TypeSystem.html">RubyBreaker::Runtime::TypeSystem</a>
|
|
146
140
|
|
|
147
141
|
<li><a href="../../RubyBreaker/TypeComparer.html">RubyBreaker::TypeComparer</a>
|
|
148
142
|
|
|
@@ -180,6 +174,18 @@
|
|
|
180
174
|
|
|
181
175
|
<li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
182
176
|
|
|
177
|
+
<li><a href="../../Test.html">Test</a>
|
|
178
|
+
|
|
179
|
+
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
180
|
+
|
|
181
|
+
<li><a href="../../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
182
|
+
|
|
183
|
+
<li><a href="../../Rake.html">Rake</a>
|
|
184
|
+
|
|
185
|
+
<li><a href="../../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
186
|
+
|
|
187
|
+
<li><a href="../../Kernel.html">Kernel</a>
|
|
188
|
+
|
|
183
189
|
<li><a href="../../Object.html">Object</a>
|
|
184
190
|
|
|
185
191
|
</ul>
|
|
@@ -90,8 +90,6 @@
|
|
|
90
90
|
|
|
91
91
|
<li><a href="../../RubyBreaker/Broken.html">RubyBreaker::Broken</a>
|
|
92
92
|
|
|
93
|
-
<li><a href="../../RubyBreaker/Broken/BrokenEigen.html">RubyBreaker::Broken::BrokenEigen</a>
|
|
94
|
-
|
|
95
93
|
<li><a href="../../RubyBreaker/Context.html">RubyBreaker::Context</a>
|
|
96
94
|
|
|
97
95
|
<li><a href="../../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
|
|
@@ -108,12 +106,12 @@
|
|
|
108
106
|
|
|
109
107
|
<li><a href="../../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
|
|
110
108
|
|
|
111
|
-
<li><a href="../../RubyBreaker/Main.html">RubyBreaker::Main</a>
|
|
112
|
-
|
|
113
109
|
<li><a href="../../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
|
|
114
110
|
|
|
115
111
|
<li><a href="../../RubyBreaker/Position.html">RubyBreaker::Position</a>
|
|
116
112
|
|
|
113
|
+
<li><a href="../../RubyBreaker/RDocSupport.html">RubyBreaker::RDocSupport</a>
|
|
114
|
+
|
|
117
115
|
<li><a href="../../RubyBreaker/RubyTypeUtils.html">RubyBreaker::RubyTypeUtils</a>
|
|
118
116
|
|
|
119
117
|
<li><a href="../../RubyBreaker/Runtime.html">RubyBreaker::Runtime</a>
|
|
@@ -134,15 +132,11 @@
|
|
|
134
132
|
|
|
135
133
|
<li><a href="../../RubyBreaker/Runtime/Pluggable.html">RubyBreaker::Runtime::Pluggable</a>
|
|
136
134
|
|
|
137
|
-
<li><a href="../../RubyBreaker/Runtime/TypePlaceholder.html">RubyBreaker::Runtime::TypePlaceholder</a>
|
|
138
|
-
|
|
139
135
|
<li><a href="../../RubyBreaker/Runtime/TypeSigParser.html">RubyBreaker::Runtime::TypeSigParser</a>
|
|
140
136
|
|
|
141
|
-
<li><a href="../../RubyBreaker/Runtime/
|
|
142
|
-
|
|
143
|
-
<li><a href="../../RubyBreaker/Runtime/TypesigUnparser.html">RubyBreaker::Runtime::TypesigUnparser</a>
|
|
137
|
+
<li><a href="../../RubyBreaker/Runtime/TypeSigUnparser.html">RubyBreaker::Runtime::TypeSigUnparser</a>
|
|
144
138
|
|
|
145
|
-
<li><a href="../../RubyBreaker/
|
|
139
|
+
<li><a href="../../RubyBreaker/Runtime/TypeSystem.html">RubyBreaker::Runtime::TypeSystem</a>
|
|
146
140
|
|
|
147
141
|
<li><a href="../../RubyBreaker/TypeComparer.html">RubyBreaker::TypeComparer</a>
|
|
148
142
|
|
|
@@ -180,6 +174,18 @@
|
|
|
180
174
|
|
|
181
175
|
<li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
182
176
|
|
|
177
|
+
<li><a href="../../Test.html">Test</a>
|
|
178
|
+
|
|
179
|
+
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
180
|
+
|
|
181
|
+
<li><a href="../../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
182
|
+
|
|
183
|
+
<li><a href="../../Rake.html">Rake</a>
|
|
184
|
+
|
|
185
|
+
<li><a href="../../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
186
|
+
|
|
187
|
+
<li><a href="../../Kernel.html">Kernel</a>
|
|
188
|
+
|
|
183
189
|
<li><a href="../../Object.html">Object</a>
|
|
184
190
|
|
|
185
191
|
</ul>
|
|
@@ -92,8 +92,6 @@
|
|
|
92
92
|
|
|
93
93
|
<li><a href="../../RubyBreaker/Broken.html">RubyBreaker::Broken</a>
|
|
94
94
|
|
|
95
|
-
<li><a href="../../RubyBreaker/Broken/BrokenEigen.html">RubyBreaker::Broken::BrokenEigen</a>
|
|
96
|
-
|
|
97
95
|
<li><a href="../../RubyBreaker/Context.html">RubyBreaker::Context</a>
|
|
98
96
|
|
|
99
97
|
<li><a href="../../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
|
|
@@ -110,12 +108,12 @@
|
|
|
110
108
|
|
|
111
109
|
<li><a href="../../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
|
|
112
110
|
|
|
113
|
-
<li><a href="../../RubyBreaker/Main.html">RubyBreaker::Main</a>
|
|
114
|
-
|
|
115
111
|
<li><a href="../../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
|
|
116
112
|
|
|
117
113
|
<li><a href="../../RubyBreaker/Position.html">RubyBreaker::Position</a>
|
|
118
114
|
|
|
115
|
+
<li><a href="../../RubyBreaker/RDocSupport.html">RubyBreaker::RDocSupport</a>
|
|
116
|
+
|
|
119
117
|
<li><a href="../../RubyBreaker/RubyTypeUtils.html">RubyBreaker::RubyTypeUtils</a>
|
|
120
118
|
|
|
121
119
|
<li><a href="../../RubyBreaker/Runtime.html">RubyBreaker::Runtime</a>
|
|
@@ -136,15 +134,11 @@
|
|
|
136
134
|
|
|
137
135
|
<li><a href="../../RubyBreaker/Runtime/Pluggable.html">RubyBreaker::Runtime::Pluggable</a>
|
|
138
136
|
|
|
139
|
-
<li><a href="../../RubyBreaker/Runtime/TypePlaceholder.html">RubyBreaker::Runtime::TypePlaceholder</a>
|
|
140
|
-
|
|
141
137
|
<li><a href="../../RubyBreaker/Runtime/TypeSigParser.html">RubyBreaker::Runtime::TypeSigParser</a>
|
|
142
138
|
|
|
143
|
-
<li><a href="../../RubyBreaker/Runtime/
|
|
144
|
-
|
|
145
|
-
<li><a href="../../RubyBreaker/Runtime/TypesigUnparser.html">RubyBreaker::Runtime::TypesigUnparser</a>
|
|
139
|
+
<li><a href="../../RubyBreaker/Runtime/TypeSigUnparser.html">RubyBreaker::Runtime::TypeSigUnparser</a>
|
|
146
140
|
|
|
147
|
-
<li><a href="../../RubyBreaker/
|
|
141
|
+
<li><a href="../../RubyBreaker/Runtime/TypeSystem.html">RubyBreaker::Runtime::TypeSystem</a>
|
|
148
142
|
|
|
149
143
|
<li><a href="../../RubyBreaker/TypeComparer.html">RubyBreaker::TypeComparer</a>
|
|
150
144
|
|
|
@@ -182,6 +176,18 @@
|
|
|
182
176
|
|
|
183
177
|
<li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
184
178
|
|
|
179
|
+
<li><a href="../../Test.html">Test</a>
|
|
180
|
+
|
|
181
|
+
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
182
|
+
|
|
183
|
+
<li><a href="../../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
184
|
+
|
|
185
|
+
<li><a href="../../Rake.html">Rake</a>
|
|
186
|
+
|
|
187
|
+
<li><a href="../../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
188
|
+
|
|
189
|
+
<li><a href="../../Kernel.html">Kernel</a>
|
|
190
|
+
|
|
185
191
|
<li><a href="../../Object.html">Object</a>
|
|
186
192
|
|
|
187
193
|
</ul>
|
|
@@ -92,8 +92,6 @@
|
|
|
92
92
|
|
|
93
93
|
<li><a href="../../RubyBreaker/Broken.html">RubyBreaker::Broken</a>
|
|
94
94
|
|
|
95
|
-
<li><a href="../../RubyBreaker/Broken/BrokenEigen.html">RubyBreaker::Broken::BrokenEigen</a>
|
|
96
|
-
|
|
97
95
|
<li><a href="../../RubyBreaker/Context.html">RubyBreaker::Context</a>
|
|
98
96
|
|
|
99
97
|
<li><a href="../../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
|
|
@@ -110,12 +108,12 @@
|
|
|
110
108
|
|
|
111
109
|
<li><a href="../../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
|
|
112
110
|
|
|
113
|
-
<li><a href="../../RubyBreaker/Main.html">RubyBreaker::Main</a>
|
|
114
|
-
|
|
115
111
|
<li><a href="../../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
|
|
116
112
|
|
|
117
113
|
<li><a href="../../RubyBreaker/Position.html">RubyBreaker::Position</a>
|
|
118
114
|
|
|
115
|
+
<li><a href="../../RubyBreaker/RDocSupport.html">RubyBreaker::RDocSupport</a>
|
|
116
|
+
|
|
119
117
|
<li><a href="../../RubyBreaker/RubyTypeUtils.html">RubyBreaker::RubyTypeUtils</a>
|
|
120
118
|
|
|
121
119
|
<li><a href="../../RubyBreaker/Runtime.html">RubyBreaker::Runtime</a>
|
|
@@ -136,15 +134,11 @@
|
|
|
136
134
|
|
|
137
135
|
<li><a href="../../RubyBreaker/Runtime/Pluggable.html">RubyBreaker::Runtime::Pluggable</a>
|
|
138
136
|
|
|
139
|
-
<li><a href="../../RubyBreaker/Runtime/TypePlaceholder.html">RubyBreaker::Runtime::TypePlaceholder</a>
|
|
140
|
-
|
|
141
137
|
<li><a href="../../RubyBreaker/Runtime/TypeSigParser.html">RubyBreaker::Runtime::TypeSigParser</a>
|
|
142
138
|
|
|
143
|
-
<li><a href="../../RubyBreaker/Runtime/
|
|
144
|
-
|
|
145
|
-
<li><a href="../../RubyBreaker/Runtime/TypesigUnparser.html">RubyBreaker::Runtime::TypesigUnparser</a>
|
|
139
|
+
<li><a href="../../RubyBreaker/Runtime/TypeSigUnparser.html">RubyBreaker::Runtime::TypeSigUnparser</a>
|
|
146
140
|
|
|
147
|
-
<li><a href="../../RubyBreaker/
|
|
141
|
+
<li><a href="../../RubyBreaker/Runtime/TypeSystem.html">RubyBreaker::Runtime::TypeSystem</a>
|
|
148
142
|
|
|
149
143
|
<li><a href="../../RubyBreaker/TypeComparer.html">RubyBreaker::TypeComparer</a>
|
|
150
144
|
|
|
@@ -182,6 +176,18 @@
|
|
|
182
176
|
|
|
183
177
|
<li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
184
178
|
|
|
179
|
+
<li><a href="../../Test.html">Test</a>
|
|
180
|
+
|
|
181
|
+
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
182
|
+
|
|
183
|
+
<li><a href="../../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
184
|
+
|
|
185
|
+
<li><a href="../../Rake.html">Rake</a>
|
|
186
|
+
|
|
187
|
+
<li><a href="../../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
188
|
+
|
|
189
|
+
<li><a href="../../Kernel.html">Kernel</a>
|
|
190
|
+
|
|
185
191
|
<li><a href="../../Object.html">Object</a>
|
|
186
192
|
|
|
187
193
|
</ul>
|
|
@@ -90,8 +90,6 @@
|
|
|
90
90
|
|
|
91
91
|
<li><a href="../../RubyBreaker/Broken.html">RubyBreaker::Broken</a>
|
|
92
92
|
|
|
93
|
-
<li><a href="../../RubyBreaker/Broken/BrokenEigen.html">RubyBreaker::Broken::BrokenEigen</a>
|
|
94
|
-
|
|
95
93
|
<li><a href="../../RubyBreaker/Context.html">RubyBreaker::Context</a>
|
|
96
94
|
|
|
97
95
|
<li><a href="../../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
|
|
@@ -108,12 +106,12 @@
|
|
|
108
106
|
|
|
109
107
|
<li><a href="../../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
|
|
110
108
|
|
|
111
|
-
<li><a href="../../RubyBreaker/Main.html">RubyBreaker::Main</a>
|
|
112
|
-
|
|
113
109
|
<li><a href="../../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
|
|
114
110
|
|
|
115
111
|
<li><a href="../../RubyBreaker/Position.html">RubyBreaker::Position</a>
|
|
116
112
|
|
|
113
|
+
<li><a href="../../RubyBreaker/RDocSupport.html">RubyBreaker::RDocSupport</a>
|
|
114
|
+
|
|
117
115
|
<li><a href="../../RubyBreaker/RubyTypeUtils.html">RubyBreaker::RubyTypeUtils</a>
|
|
118
116
|
|
|
119
117
|
<li><a href="../../RubyBreaker/Runtime.html">RubyBreaker::Runtime</a>
|
|
@@ -134,15 +132,11 @@
|
|
|
134
132
|
|
|
135
133
|
<li><a href="../../RubyBreaker/Runtime/Pluggable.html">RubyBreaker::Runtime::Pluggable</a>
|
|
136
134
|
|
|
137
|
-
<li><a href="../../RubyBreaker/Runtime/TypePlaceholder.html">RubyBreaker::Runtime::TypePlaceholder</a>
|
|
138
|
-
|
|
139
135
|
<li><a href="../../RubyBreaker/Runtime/TypeSigParser.html">RubyBreaker::Runtime::TypeSigParser</a>
|
|
140
136
|
|
|
141
|
-
<li><a href="../../RubyBreaker/Runtime/
|
|
142
|
-
|
|
143
|
-
<li><a href="../../RubyBreaker/Runtime/TypesigUnparser.html">RubyBreaker::Runtime::TypesigUnparser</a>
|
|
137
|
+
<li><a href="../../RubyBreaker/Runtime/TypeSigUnparser.html">RubyBreaker::Runtime::TypeSigUnparser</a>
|
|
144
138
|
|
|
145
|
-
<li><a href="../../RubyBreaker/
|
|
139
|
+
<li><a href="../../RubyBreaker/Runtime/TypeSystem.html">RubyBreaker::Runtime::TypeSystem</a>
|
|
146
140
|
|
|
147
141
|
<li><a href="../../RubyBreaker/TypeComparer.html">RubyBreaker::TypeComparer</a>
|
|
148
142
|
|
|
@@ -180,6 +174,18 @@
|
|
|
180
174
|
|
|
181
175
|
<li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
182
176
|
|
|
177
|
+
<li><a href="../../Test.html">Test</a>
|
|
178
|
+
|
|
179
|
+
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
180
|
+
|
|
181
|
+
<li><a href="../../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
182
|
+
|
|
183
|
+
<li><a href="../../Rake.html">Rake</a>
|
|
184
|
+
|
|
185
|
+
<li><a href="../../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
186
|
+
|
|
187
|
+
<li><a href="../../Kernel.html">Kernel</a>
|
|
188
|
+
|
|
183
189
|
<li><a href="../../Object.html">Object</a>
|
|
184
190
|
|
|
185
191
|
</ul>
|