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
|
@@ -84,8 +84,6 @@
|
|
|
84
84
|
|
|
85
85
|
<li><a href="../RubyBreaker/Broken.html">RubyBreaker::Broken</a>
|
|
86
86
|
|
|
87
|
-
<li><a href="../RubyBreaker/Broken/BrokenEigen.html">RubyBreaker::Broken::BrokenEigen</a>
|
|
88
|
-
|
|
89
87
|
<li><a href="../RubyBreaker/Context.html">RubyBreaker::Context</a>
|
|
90
88
|
|
|
91
89
|
<li><a href="../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
|
|
@@ -102,12 +100,12 @@
|
|
|
102
100
|
|
|
103
101
|
<li><a href="../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
|
|
104
102
|
|
|
105
|
-
<li><a href="../RubyBreaker/Main.html">RubyBreaker::Main</a>
|
|
106
|
-
|
|
107
103
|
<li><a href="../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
|
|
108
104
|
|
|
109
105
|
<li><a href="../RubyBreaker/Position.html">RubyBreaker::Position</a>
|
|
110
106
|
|
|
107
|
+
<li><a href="../RubyBreaker/RDocSupport.html">RubyBreaker::RDocSupport</a>
|
|
108
|
+
|
|
111
109
|
<li><a href="../RubyBreaker/RubyTypeUtils.html">RubyBreaker::RubyTypeUtils</a>
|
|
112
110
|
|
|
113
111
|
<li><a href="../RubyBreaker/Runtime.html">RubyBreaker::Runtime</a>
|
|
@@ -128,15 +126,11 @@
|
|
|
128
126
|
|
|
129
127
|
<li><a href="../RubyBreaker/Runtime/Pluggable.html">RubyBreaker::Runtime::Pluggable</a>
|
|
130
128
|
|
|
131
|
-
<li><a href="../RubyBreaker/Runtime/TypePlaceholder.html">RubyBreaker::Runtime::TypePlaceholder</a>
|
|
132
|
-
|
|
133
129
|
<li><a href="../RubyBreaker/Runtime/TypeSigParser.html">RubyBreaker::Runtime::TypeSigParser</a>
|
|
134
130
|
|
|
135
|
-
<li><a href="../RubyBreaker/Runtime/
|
|
136
|
-
|
|
137
|
-
<li><a href="../RubyBreaker/Runtime/TypesigUnparser.html">RubyBreaker::Runtime::TypesigUnparser</a>
|
|
131
|
+
<li><a href="../RubyBreaker/Runtime/TypeSigUnparser.html">RubyBreaker::Runtime::TypeSigUnparser</a>
|
|
138
132
|
|
|
139
|
-
<li><a href="../RubyBreaker/
|
|
133
|
+
<li><a href="../RubyBreaker/Runtime/TypeSystem.html">RubyBreaker::Runtime::TypeSystem</a>
|
|
140
134
|
|
|
141
135
|
<li><a href="../RubyBreaker/TypeComparer.html">RubyBreaker::TypeComparer</a>
|
|
142
136
|
|
|
@@ -174,6 +168,18 @@
|
|
|
174
168
|
|
|
175
169
|
<li><a href="../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
176
170
|
|
|
171
|
+
<li><a href="../Test.html">Test</a>
|
|
172
|
+
|
|
173
|
+
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
174
|
+
|
|
175
|
+
<li><a href="../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
176
|
+
|
|
177
|
+
<li><a href="../Rake.html">Rake</a>
|
|
178
|
+
|
|
179
|
+
<li><a href="../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
180
|
+
|
|
181
|
+
<li><a href="../Kernel.html">Kernel</a>
|
|
182
|
+
|
|
177
183
|
<li><a href="../Object.html">Object</a>
|
|
178
184
|
|
|
179
185
|
</ul>
|
|
@@ -187,13 +193,11 @@
|
|
|
187
193
|
|
|
188
194
|
<div id="description" class="description">
|
|
189
195
|
|
|
190
|
-
<p>
|
|
191
|
-
|
|
192
|
-
href="
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
trigger that queues the target module into the list of modules to monitor.
|
|
196
|
-
The queued modules are then modified to be monitored dynamically.</p>
|
|
196
|
+
<p><strong>DEPRECATED</strong>: Use +<a
|
|
197
|
+
href="Runtime.html#method-c-breakable">RubyBreaker::Runtime.breakable</a>+
|
|
198
|
+
or +<a href="../RubyBreaker.html#method-c-run">RubyBreaker.run</a>+ method</p>
|
|
199
|
+
|
|
200
|
+
<pre>instead.</pre>
|
|
197
201
|
|
|
198
202
|
</div><!-- description -->
|
|
199
203
|
|
|
@@ -206,24 +210,6 @@ The queued modules are then modified to be monitored dynamically.</p>
|
|
|
206
210
|
|
|
207
211
|
|
|
208
212
|
|
|
209
|
-
<!-- Constants -->
|
|
210
|
-
<section id="constants-list" class="section">
|
|
211
|
-
<h3 class="section-header">Constants</h3>
|
|
212
|
-
<dl>
|
|
213
|
-
|
|
214
|
-
<dt id="MONITOR_MAP">MONITOR_MAP
|
|
215
|
-
|
|
216
|
-
<dd class="description">
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
<dt id="TYPE_PLACEHOLDER_MAP">TYPE_PLACEHOLDER_MAP
|
|
220
|
-
|
|
221
|
-
<dd class="description">
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
</dl>
|
|
225
|
-
</section>
|
|
226
|
-
|
|
227
213
|
|
|
228
214
|
|
|
229
215
|
|
|
@@ -244,16 +230,14 @@ The queued modules are then modified to be monitored dynamically.</p>
|
|
|
244
230
|
|
|
245
231
|
<div class="method-description">
|
|
246
232
|
|
|
247
|
-
|
|
248
|
-
later on.</p>
|
|
233
|
+
|
|
249
234
|
|
|
250
235
|
|
|
251
236
|
|
|
252
237
|
<div class="method-source-code" id="included-source">
|
|
253
|
-
<pre><span class="ruby-comment"># File lib/rubybreaker/runtime.rb, line
|
|
238
|
+
<pre><span class="ruby-comment"># File lib/rubybreaker/runtime.rb, line 80</span>
|
|
254
239
|
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">included</span>(<span class="ruby-identifier">mod</span>)
|
|
255
|
-
<span class="ruby-constant">
|
|
256
|
-
<span class="ruby-constant">BREAKABLE</span> <span class="ruby-operator"><<</span> <span class="ruby-constant">Runtime</span>.<span class="ruby-identifier">eigen_class</span>(<span class="ruby-identifier">mod</span>)
|
|
240
|
+
<span class="ruby-constant">Runtime</span><span class="ruby-operator">::</span><span class="ruby-constant">BREAKABLES</span> <span class="ruby-operator"><<</span> <span class="ruby-identifier">mod</span> <span class="ruby-operator"><<</span> <span class="ruby-constant">Runtime</span>.<span class="ruby-identifier">eigen_class</span>(<span class="ruby-identifier">mod</span>)
|
|
257
241
|
<span class="ruby-keyword">end</span></pre>
|
|
258
242
|
</div><!-- included-source -->
|
|
259
243
|
|
|
@@ -57,23 +57,7 @@
|
|
|
57
57
|
<div id="class-metadata">
|
|
58
58
|
|
|
59
59
|
|
|
60
|
-
|
|
61
|
-
<nav id="includes-section" class="section">
|
|
62
|
-
<h3 class="section-header">Included Modules</h3>
|
|
63
|
-
|
|
64
|
-
<ul class="link-list">
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
<li><a class="include" href="TypeDefs.html">RubyBreaker::TypeDefs</a>
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
<li><a class="include" href="Runtime.html">RubyBreaker::Runtime</a>
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
</ul>
|
|
75
|
-
</nav>
|
|
76
|
-
|
|
60
|
+
|
|
77
61
|
<!-- Method Quickref -->
|
|
78
62
|
<nav id="method-list-section" class="section">
|
|
79
63
|
<h3 class="section-header">Methods</h3>
|
|
@@ -100,8 +84,6 @@
|
|
|
100
84
|
|
|
101
85
|
<li><a href="../RubyBreaker/Broken.html">RubyBreaker::Broken</a>
|
|
102
86
|
|
|
103
|
-
<li><a href="../RubyBreaker/Broken/BrokenEigen.html">RubyBreaker::Broken::BrokenEigen</a>
|
|
104
|
-
|
|
105
87
|
<li><a href="../RubyBreaker/Context.html">RubyBreaker::Context</a>
|
|
106
88
|
|
|
107
89
|
<li><a href="../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
|
|
@@ -118,12 +100,12 @@
|
|
|
118
100
|
|
|
119
101
|
<li><a href="../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
|
|
120
102
|
|
|
121
|
-
<li><a href="../RubyBreaker/Main.html">RubyBreaker::Main</a>
|
|
122
|
-
|
|
123
103
|
<li><a href="../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
|
|
124
104
|
|
|
125
105
|
<li><a href="../RubyBreaker/Position.html">RubyBreaker::Position</a>
|
|
126
106
|
|
|
107
|
+
<li><a href="../RubyBreaker/RDocSupport.html">RubyBreaker::RDocSupport</a>
|
|
108
|
+
|
|
127
109
|
<li><a href="../RubyBreaker/RubyTypeUtils.html">RubyBreaker::RubyTypeUtils</a>
|
|
128
110
|
|
|
129
111
|
<li><a href="../RubyBreaker/Runtime.html">RubyBreaker::Runtime</a>
|
|
@@ -144,15 +126,11 @@
|
|
|
144
126
|
|
|
145
127
|
<li><a href="../RubyBreaker/Runtime/Pluggable.html">RubyBreaker::Runtime::Pluggable</a>
|
|
146
128
|
|
|
147
|
-
<li><a href="../RubyBreaker/Runtime/TypePlaceholder.html">RubyBreaker::Runtime::TypePlaceholder</a>
|
|
148
|
-
|
|
149
129
|
<li><a href="../RubyBreaker/Runtime/TypeSigParser.html">RubyBreaker::Runtime::TypeSigParser</a>
|
|
150
130
|
|
|
151
|
-
<li><a href="../RubyBreaker/Runtime/
|
|
152
|
-
|
|
153
|
-
<li><a href="../RubyBreaker/Runtime/TypesigUnparser.html">RubyBreaker::Runtime::TypesigUnparser</a>
|
|
131
|
+
<li><a href="../RubyBreaker/Runtime/TypeSigUnparser.html">RubyBreaker::Runtime::TypeSigUnparser</a>
|
|
154
132
|
|
|
155
|
-
<li><a href="../RubyBreaker/
|
|
133
|
+
<li><a href="../RubyBreaker/Runtime/TypeSystem.html">RubyBreaker::Runtime::TypeSystem</a>
|
|
156
134
|
|
|
157
135
|
<li><a href="../RubyBreaker/TypeComparer.html">RubyBreaker::TypeComparer</a>
|
|
158
136
|
|
|
@@ -190,6 +168,18 @@
|
|
|
190
168
|
|
|
191
169
|
<li><a href="../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
192
170
|
|
|
171
|
+
<li><a href="../Test.html">Test</a>
|
|
172
|
+
|
|
173
|
+
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
174
|
+
|
|
175
|
+
<li><a href="../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
176
|
+
|
|
177
|
+
<li><a href="../Rake.html">Rake</a>
|
|
178
|
+
|
|
179
|
+
<li><a href="../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
180
|
+
|
|
181
|
+
<li><a href="../Kernel.html">Kernel</a>
|
|
182
|
+
|
|
193
183
|
<li><a href="../Object.html">Object</a>
|
|
194
184
|
|
|
195
185
|
</ul>
|
|
@@ -203,7 +193,7 @@
|
|
|
203
193
|
|
|
204
194
|
<div id="description" class="description">
|
|
205
195
|
|
|
206
|
-
<p>
|
|
196
|
+
<p><strong>DEPRECATED</strong>: It has no effect.</p>
|
|
207
197
|
|
|
208
198
|
</div><!-- description -->
|
|
209
199
|
|
|
@@ -216,19 +206,6 @@
|
|
|
216
206
|
|
|
217
207
|
|
|
218
208
|
|
|
219
|
-
<!-- Constants -->
|
|
220
|
-
<section id="constants-list" class="section">
|
|
221
|
-
<h3 class="section-header">Constants</h3>
|
|
222
|
-
<dl>
|
|
223
|
-
|
|
224
|
-
<dt id="TYPE_PLACEHOLDER_MAP">TYPE_PLACEHOLDER_MAP
|
|
225
|
-
|
|
226
|
-
<dd class="description">
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
</dl>
|
|
230
|
-
</section>
|
|
231
|
-
|
|
232
209
|
|
|
233
210
|
|
|
234
211
|
|
|
@@ -249,39 +226,14 @@
|
|
|
249
226
|
|
|
250
227
|
<div class="method-description">
|
|
251
228
|
|
|
252
|
-
|
|
253
|
-
included. This just extends <a
|
|
254
|
-
href="Broken/BrokenEigen.html">BrokenEigen</a> into the target module so
|
|
255
|
-
“typesig” method can be called from the eigen level of the module. It also
|
|
256
|
-
extends the eigen class of the target module so that “typesig” can work for
|
|
257
|
-
class methods too.</p>
|
|
229
|
+
|
|
258
230
|
|
|
259
231
|
|
|
260
232
|
|
|
261
233
|
<div class="method-source-code" id="included-source">
|
|
262
|
-
<pre><span class="ruby-comment"># File lib/rubybreaker/runtime.rb, line
|
|
234
|
+
<pre><span class="ruby-comment"># File lib/rubybreaker/runtime.rb, line 87</span>
|
|
263
235
|
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">included</span>(<span class="ruby-identifier">mod</span>)
|
|
264
|
-
|
|
265
|
-
<span class="ruby-comment"># Add to the list of broken modules</span>
|
|
266
|
-
<span class="ruby-constant">BROKEN</span> <span class="ruby-operator"><<</span> <span class="ruby-identifier">mod</span>
|
|
267
|
-
|
|
268
|
-
<span class="ruby-comment"># Create if there is no type placeholder for this module yet</span>
|
|
269
|
-
<span class="ruby-identifier">placeholder</span> = <span class="ruby-constant">TYPE_PLACEHOLDER_MAP</span>[<span class="ruby-identifier">mod</span>]
|
|
270
|
-
<span class="ruby-keyword">if</span> <span class="ruby-operator">!</span><span class="ruby-identifier">placeholder</span>
|
|
271
|
-
<span class="ruby-identifier">placeholder</span> = <span class="ruby-constant">TypePlaceholder</span>.<span class="ruby-identifier">new</span>()
|
|
272
|
-
<span class="ruby-constant">TYPE_PLACEHOLDER_MAP</span>[<span class="ruby-identifier">mod</span>] = <span class="ruby-identifier">placeholder</span>
|
|
273
|
-
<span class="ruby-keyword">end</span>
|
|
274
|
-
<span class="ruby-identifier">mod</span>.<span class="ruby-identifier">extend</span>(<span class="ruby-constant">BrokenEigen</span>)
|
|
275
|
-
|
|
276
|
-
<span class="ruby-comment"># Support up to one eigen level to support class methods</span>
|
|
277
|
-
<span class="ruby-identifier">eigen_class</span> = <span class="ruby-constant">Runtime</span>.<span class="ruby-identifier">eigen_class</span>(<span class="ruby-identifier">mod</span>)
|
|
278
|
-
<span class="ruby-constant">BROKEN</span> <span class="ruby-operator"><<</span> <span class="ruby-identifier">eigen_class</span>
|
|
279
|
-
<span class="ruby-identifier">placeholder</span> = <span class="ruby-constant">TYPE_PLACEHOLDER_MAP</span>[<span class="ruby-identifier">eigen_class</span>]
|
|
280
|
-
<span class="ruby-keyword">if</span> <span class="ruby-operator">!</span><span class="ruby-identifier">placeholder</span>
|
|
281
|
-
<span class="ruby-identifier">placeholder</span> = <span class="ruby-constant">TypePlaceholder</span>.<span class="ruby-identifier">new</span>()
|
|
282
|
-
<span class="ruby-constant">TYPE_PLACEHOLDER_MAP</span>[<span class="ruby-identifier">eigen_class</span>] = <span class="ruby-identifier">placeholder</span>
|
|
283
|
-
<span class="ruby-keyword">end</span>
|
|
284
|
-
<span class="ruby-identifier">eigen_class</span>.<span class="ruby-identifier">extend</span>(<span class="ruby-constant">BrokenEigen</span>)
|
|
236
|
+
<span class="ruby-comment"># Runtime.broken(mod)</span>
|
|
285
237
|
<span class="ruby-keyword">end</span></pre>
|
|
286
238
|
</div><!-- included-source -->
|
|
287
239
|
|
|
@@ -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>
|
|
@@ -80,8 +80,6 @@
|
|
|
80
80
|
|
|
81
81
|
<li><a href="../../RubyBreaker/Broken.html">RubyBreaker::Broken</a>
|
|
82
82
|
|
|
83
|
-
<li><a href="../../RubyBreaker/Broken/BrokenEigen.html">RubyBreaker::Broken::BrokenEigen</a>
|
|
84
|
-
|
|
85
83
|
<li><a href="../../RubyBreaker/Context.html">RubyBreaker::Context</a>
|
|
86
84
|
|
|
87
85
|
<li><a href="../../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
|
|
@@ -98,12 +96,12 @@
|
|
|
98
96
|
|
|
99
97
|
<li><a href="../../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
|
|
100
98
|
|
|
101
|
-
<li><a href="../../RubyBreaker/Main.html">RubyBreaker::Main</a>
|
|
102
|
-
|
|
103
99
|
<li><a href="../../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
|
|
104
100
|
|
|
105
101
|
<li><a href="../../RubyBreaker/Position.html">RubyBreaker::Position</a>
|
|
106
102
|
|
|
103
|
+
<li><a href="../../RubyBreaker/RDocSupport.html">RubyBreaker::RDocSupport</a>
|
|
104
|
+
|
|
107
105
|
<li><a href="../../RubyBreaker/RubyTypeUtils.html">RubyBreaker::RubyTypeUtils</a>
|
|
108
106
|
|
|
109
107
|
<li><a href="../../RubyBreaker/Runtime.html">RubyBreaker::Runtime</a>
|
|
@@ -124,15 +122,11 @@
|
|
|
124
122
|
|
|
125
123
|
<li><a href="../../RubyBreaker/Runtime/Pluggable.html">RubyBreaker::Runtime::Pluggable</a>
|
|
126
124
|
|
|
127
|
-
<li><a href="../../RubyBreaker/Runtime/TypePlaceholder.html">RubyBreaker::Runtime::TypePlaceholder</a>
|
|
128
|
-
|
|
129
125
|
<li><a href="../../RubyBreaker/Runtime/TypeSigParser.html">RubyBreaker::Runtime::TypeSigParser</a>
|
|
130
126
|
|
|
131
|
-
<li><a href="../../RubyBreaker/Runtime/
|
|
132
|
-
|
|
133
|
-
<li><a href="../../RubyBreaker/Runtime/TypesigUnparser.html">RubyBreaker::Runtime::TypesigUnparser</a>
|
|
127
|
+
<li><a href="../../RubyBreaker/Runtime/TypeSigUnparser.html">RubyBreaker::Runtime::TypeSigUnparser</a>
|
|
134
128
|
|
|
135
|
-
<li><a href="../../RubyBreaker/
|
|
129
|
+
<li><a href="../../RubyBreaker/Runtime/TypeSystem.html">RubyBreaker::Runtime::TypeSystem</a>
|
|
136
130
|
|
|
137
131
|
<li><a href="../../RubyBreaker/TypeComparer.html">RubyBreaker::TypeComparer</a>
|
|
138
132
|
|
|
@@ -170,6 +164,18 @@
|
|
|
170
164
|
|
|
171
165
|
<li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
172
166
|
|
|
167
|
+
<li><a href="../../Test.html">Test</a>
|
|
168
|
+
|
|
169
|
+
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
170
|
+
|
|
171
|
+
<li><a href="../../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
172
|
+
|
|
173
|
+
<li><a href="../../Rake.html">Rake</a>
|
|
174
|
+
|
|
175
|
+
<li><a href="../../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
176
|
+
|
|
177
|
+
<li><a href="../../Kernel.html">Kernel</a>
|
|
178
|
+
|
|
173
179
|
<li><a href="../../Object.html">Object</a>
|
|
174
180
|
|
|
175
181
|
</ul>
|
|
@@ -80,8 +80,6 @@
|
|
|
80
80
|
|
|
81
81
|
<li><a href="../../RubyBreaker/Broken.html">RubyBreaker::Broken</a>
|
|
82
82
|
|
|
83
|
-
<li><a href="../../RubyBreaker/Broken/BrokenEigen.html">RubyBreaker::Broken::BrokenEigen</a>
|
|
84
|
-
|
|
85
83
|
<li><a href="../../RubyBreaker/Context.html">RubyBreaker::Context</a>
|
|
86
84
|
|
|
87
85
|
<li><a href="../../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
|
|
@@ -98,12 +96,12 @@
|
|
|
98
96
|
|
|
99
97
|
<li><a href="../../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
|
|
100
98
|
|
|
101
|
-
<li><a href="../../RubyBreaker/Main.html">RubyBreaker::Main</a>
|
|
102
|
-
|
|
103
99
|
<li><a href="../../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
|
|
104
100
|
|
|
105
101
|
<li><a href="../../RubyBreaker/Position.html">RubyBreaker::Position</a>
|
|
106
102
|
|
|
103
|
+
<li><a href="../../RubyBreaker/RDocSupport.html">RubyBreaker::RDocSupport</a>
|
|
104
|
+
|
|
107
105
|
<li><a href="../../RubyBreaker/RubyTypeUtils.html">RubyBreaker::RubyTypeUtils</a>
|
|
108
106
|
|
|
109
107
|
<li><a href="../../RubyBreaker/Runtime.html">RubyBreaker::Runtime</a>
|
|
@@ -124,15 +122,11 @@
|
|
|
124
122
|
|
|
125
123
|
<li><a href="../../RubyBreaker/Runtime/Pluggable.html">RubyBreaker::Runtime::Pluggable</a>
|
|
126
124
|
|
|
127
|
-
<li><a href="../../RubyBreaker/Runtime/TypePlaceholder.html">RubyBreaker::Runtime::TypePlaceholder</a>
|
|
128
|
-
|
|
129
125
|
<li><a href="../../RubyBreaker/Runtime/TypeSigParser.html">RubyBreaker::Runtime::TypeSigParser</a>
|
|
130
126
|
|
|
131
|
-
<li><a href="../../RubyBreaker/Runtime/
|
|
132
|
-
|
|
133
|
-
<li><a href="../../RubyBreaker/Runtime/TypesigUnparser.html">RubyBreaker::Runtime::TypesigUnparser</a>
|
|
127
|
+
<li><a href="../../RubyBreaker/Runtime/TypeSigUnparser.html">RubyBreaker::Runtime::TypeSigUnparser</a>
|
|
134
128
|
|
|
135
|
-
<li><a href="../../RubyBreaker/
|
|
129
|
+
<li><a href="../../RubyBreaker/Runtime/TypeSystem.html">RubyBreaker::Runtime::TypeSystem</a>
|
|
136
130
|
|
|
137
131
|
<li><a href="../../RubyBreaker/TypeComparer.html">RubyBreaker::TypeComparer</a>
|
|
138
132
|
|
|
@@ -170,6 +164,18 @@
|
|
|
170
164
|
|
|
171
165
|
<li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
172
166
|
|
|
167
|
+
<li><a href="../../Test.html">Test</a>
|
|
168
|
+
|
|
169
|
+
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
170
|
+
|
|
171
|
+
<li><a href="../../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
172
|
+
|
|
173
|
+
<li><a href="../../Rake.html">Rake</a>
|
|
174
|
+
|
|
175
|
+
<li><a href="../../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
176
|
+
|
|
177
|
+
<li><a href="../../Kernel.html">Kernel</a>
|
|
178
|
+
|
|
173
179
|
<li><a href="../../Object.html">Object</a>
|
|
174
180
|
|
|
175
181
|
</ul>
|
|
@@ -80,8 +80,6 @@
|
|
|
80
80
|
|
|
81
81
|
<li><a href="../../RubyBreaker/Broken.html">RubyBreaker::Broken</a>
|
|
82
82
|
|
|
83
|
-
<li><a href="../../RubyBreaker/Broken/BrokenEigen.html">RubyBreaker::Broken::BrokenEigen</a>
|
|
84
|
-
|
|
85
83
|
<li><a href="../../RubyBreaker/Context.html">RubyBreaker::Context</a>
|
|
86
84
|
|
|
87
85
|
<li><a href="../../RubyBreaker/Errors.html">RubyBreaker::Errors</a>
|
|
@@ -98,12 +96,12 @@
|
|
|
98
96
|
|
|
99
97
|
<li><a href="../../RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
|
|
100
98
|
|
|
101
|
-
<li><a href="../../RubyBreaker/Main.html">RubyBreaker::Main</a>
|
|
102
|
-
|
|
103
99
|
<li><a href="../../RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
|
|
104
100
|
|
|
105
101
|
<li><a href="../../RubyBreaker/Position.html">RubyBreaker::Position</a>
|
|
106
102
|
|
|
103
|
+
<li><a href="../../RubyBreaker/RDocSupport.html">RubyBreaker::RDocSupport</a>
|
|
104
|
+
|
|
107
105
|
<li><a href="../../RubyBreaker/RubyTypeUtils.html">RubyBreaker::RubyTypeUtils</a>
|
|
108
106
|
|
|
109
107
|
<li><a href="../../RubyBreaker/Runtime.html">RubyBreaker::Runtime</a>
|
|
@@ -124,15 +122,11 @@
|
|
|
124
122
|
|
|
125
123
|
<li><a href="../../RubyBreaker/Runtime/Pluggable.html">RubyBreaker::Runtime::Pluggable</a>
|
|
126
124
|
|
|
127
|
-
<li><a href="../../RubyBreaker/Runtime/TypePlaceholder.html">RubyBreaker::Runtime::TypePlaceholder</a>
|
|
128
|
-
|
|
129
125
|
<li><a href="../../RubyBreaker/Runtime/TypeSigParser.html">RubyBreaker::Runtime::TypeSigParser</a>
|
|
130
126
|
|
|
131
|
-
<li><a href="../../RubyBreaker/Runtime/
|
|
132
|
-
|
|
133
|
-
<li><a href="../../RubyBreaker/Runtime/TypesigUnparser.html">RubyBreaker::Runtime::TypesigUnparser</a>
|
|
127
|
+
<li><a href="../../RubyBreaker/Runtime/TypeSigUnparser.html">RubyBreaker::Runtime::TypeSigUnparser</a>
|
|
134
128
|
|
|
135
|
-
<li><a href="../../RubyBreaker/
|
|
129
|
+
<li><a href="../../RubyBreaker/Runtime/TypeSystem.html">RubyBreaker::Runtime::TypeSystem</a>
|
|
136
130
|
|
|
137
131
|
<li><a href="../../RubyBreaker/TypeComparer.html">RubyBreaker::TypeComparer</a>
|
|
138
132
|
|
|
@@ -170,6 +164,18 @@
|
|
|
170
164
|
|
|
171
165
|
<li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
172
166
|
|
|
167
|
+
<li><a href="../../Test.html">Test</a>
|
|
168
|
+
|
|
169
|
+
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
170
|
+
|
|
171
|
+
<li><a href="../../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
172
|
+
|
|
173
|
+
<li><a href="../../Rake.html">Rake</a>
|
|
174
|
+
|
|
175
|
+
<li><a href="../../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
176
|
+
|
|
177
|
+
<li><a href="../../Kernel.html">Kernel</a>
|
|
178
|
+
|
|
173
179
|
<li><a href="../../Object.html">Object</a>
|
|
174
180
|
|
|
175
181
|
</ul>
|