rubybreaker 0.0.1 → 0.0.2
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 +48 -0
- data/README.md +56 -20
- data/Rakefile +9 -34
- data/TODO +10 -10
- data/VERSION +1 -0
- data/bin/gen_stub_rubylib +35 -36
- data/bin/rubybreaker +1 -4
- data/lib/rubybreaker/debug.rb +8 -4
- data/lib/rubybreaker/rubylib/core.rb +738 -571
- data/lib/rubybreaker/runtime/inspector.rb +16 -7
- data/lib/rubybreaker/runtime/monitor.rb +14 -18
- data/lib/rubybreaker/runtime/object_wrapper.rb +9 -3
- data/lib/rubybreaker/runtime/overrides.rb +51 -8
- data/lib/rubybreaker/runtime/pluggable.rb +1 -3
- data/lib/rubybreaker/runtime/type_placeholder.rb +2 -6
- data/lib/rubybreaker/runtime/type_system.rb +53 -17
- data/lib/rubybreaker/runtime/typesig_parser.rb +1 -0
- data/lib/rubybreaker/runtime/util.rb +18 -0
- data/lib/rubybreaker/runtime.rb +42 -15
- data/lib/rubybreaker/type/type_comparer.rb +10 -10
- data/lib/rubybreaker/type/type_grammar.treetop +30 -21
- data/lib/rubybreaker/type/type_unparser.rb +2 -2
- data/lib/rubybreaker/typing/subtyping.rb +21 -21
- data/lib/rubybreaker/util.rb +11 -1
- data/lib/rubybreaker.rb +75 -54
- data/test/integrated/tc_class_methods.rb +35 -0
- data/test/integrated/tc_inherit_broken.rb +29 -0
- data/test/integrated/tc_method_missing.rb +1 -1
- data/test/runtime/tc_obj_wrapper.rb +104 -4
- data/test/ts_integrated.rb +2 -0
- data/test/type/tc_comparer.rb +96 -96
- data/test/type/tc_parser.rb +18 -0
- data/test/type/tc_unparser.rb +16 -0
- data/test/typing/tc_typing.rb +20 -20
- data/webpage/footer.html +1 -1
- data/webpage/header.html +7 -7
- data/webpage/index.html +65 -28
- data/webpage/rdoc/RubyBreaker/Breakable.html +280 -0
- data/webpage/rdoc/RubyBreaker/Broken/BrokenEigen.html +304 -0
- data/webpage/rdoc/RubyBreaker/Broken.html +308 -0
- data/webpage/rdoc/RubyBreaker/Context.html +421 -0
- data/webpage/rdoc/RubyBreaker/Debug.html +411 -0
- data/webpage/rdoc/RubyBreaker/Errors/InternalError.html +263 -0
- data/webpage/rdoc/RubyBreaker/Errors/InvalidSubtypeCheck.html +263 -0
- data/webpage/rdoc/RubyBreaker/Errors/InvalidTypeConstruction.html +214 -0
- data/webpage/rdoc/RubyBreaker/Errors/SubtypeFailure.html +212 -0
- data/webpage/rdoc/RubyBreaker/Errors/TypeError.html +212 -0
- data/webpage/rdoc/RubyBreaker/Errors/UserError.html +264 -0
- data/webpage/rdoc/RubyBreaker/Errors.html +209 -0
- data/webpage/rdoc/RubyBreaker/Kernel.html +259 -0
- data/webpage/rdoc/RubyBreaker/Main.html +560 -0
- data/webpage/rdoc/RubyBreaker/ObjectPosition.html +334 -0
- data/webpage/rdoc/RubyBreaker/Position.html +463 -0
- data/webpage/rdoc/RubyBreaker/RubyTypeUtils.html +308 -0
- data/webpage/rdoc/RubyBreaker/Runtime/Inspector.html +380 -0
- data/webpage/rdoc/RubyBreaker/Runtime/MethodInfo.html +324 -0
- data/webpage/rdoc/RubyBreaker/Runtime/Monitor.html +354 -0
- data/webpage/rdoc/RubyBreaker/Runtime/MonitorInstaller.html +379 -0
- data/webpage/rdoc/RubyBreaker/Runtime/MonitorSwitch.html +382 -0
- data/webpage/rdoc/RubyBreaker/Runtime/MonitorUtils.html +400 -0
- data/webpage/rdoc/RubyBreaker/Runtime/ObjectWrapper.html +411 -0
- data/webpage/rdoc/RubyBreaker/Runtime/Pluggable.html +305 -0
- data/webpage/rdoc/RubyBreaker/Runtime/TypePlaceholder.html +280 -0
- data/webpage/rdoc/RubyBreaker/Runtime/TypeSigParser.html +283 -0
- data/webpage/rdoc/RubyBreaker/Runtime/TypeSystem.html +630 -0
- data/webpage/rdoc/RubyBreaker/Runtime.html +255 -0
- data/webpage/rdoc/RubyBreaker/TestCase.html +332 -0
- data/webpage/rdoc/RubyBreaker/TypeComparer.html +304 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/AnyType.html +260 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/BlockType.html +310 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/DuckType.html +320 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/FusionType.html +323 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/MethodListType.html +281 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/MethodType.html +282 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/NilType.html +260 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/NominalType.html +282 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/OptionalType.html +281 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/OrType.html +281 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/SelfType.html +329 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/Type.html +409 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/VarLengthType.html +282 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs.html +212 -0
- data/webpage/rdoc/RubyBreaker/TypeUnparser.html +273 -0
- data/webpage/rdoc/RubyBreaker/Typing.html +305 -0
- data/webpage/rdoc/RubyBreaker/Utilities.html +294 -0
- data/webpage/rdoc/RubyBreaker.html +337 -0
- data/webpage/rdoc/created.rid +26 -0
- data/webpage/rdoc/images/add.png +0 -0
- data/webpage/rdoc/images/brick.png +0 -0
- data/webpage/rdoc/images/brick_link.png +0 -0
- data/webpage/rdoc/images/bug.png +0 -0
- data/webpage/rdoc/images/bullet_black.png +0 -0
- data/webpage/rdoc/images/bullet_toggle_minus.png +0 -0
- data/webpage/rdoc/images/bullet_toggle_plus.png +0 -0
- data/webpage/rdoc/images/date.png +0 -0
- data/webpage/rdoc/images/delete.png +0 -0
- data/webpage/rdoc/images/find.png +0 -0
- data/webpage/rdoc/images/loadingAnimation.gif +0 -0
- data/webpage/rdoc/images/macFFBgHack.png +0 -0
- data/webpage/rdoc/images/package.png +0 -0
- data/webpage/rdoc/images/page_green.png +0 -0
- data/webpage/rdoc/images/page_white_text.png +0 -0
- data/webpage/rdoc/images/page_white_width.png +0 -0
- data/webpage/rdoc/images/plugin.png +0 -0
- data/webpage/rdoc/images/ruby.png +0 -0
- data/webpage/rdoc/images/tag_blue.png +0 -0
- data/webpage/rdoc/images/tag_green.png +0 -0
- data/webpage/rdoc/images/transparent.png +0 -0
- data/webpage/rdoc/images/wrench.png +0 -0
- data/webpage/rdoc/images/wrench_orange.png +0 -0
- data/webpage/rdoc/images/zoom.png +0 -0
- data/webpage/rdoc/index.html +165 -0
- data/webpage/rdoc/js/darkfish.js +153 -0
- data/webpage/rdoc/js/jquery.js +18 -0
- data/webpage/rdoc/js/navigation.js +142 -0
- data/webpage/rdoc/js/search.js +94 -0
- data/webpage/rdoc/js/search_index.js +1 -0
- data/webpage/rdoc/js/searcher.js +228 -0
- data/webpage/rdoc/rdoc.css +543 -0
- data/webpage/rdoc/table_of_contents.html +376 -0
- data/webpage/rubybreaker.css +31 -31
- metadata +93 -6
|
@@ -1,8 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
# This file is auto-generated.
|
|
2
|
+
|
|
3
|
+
class ArgumentError #:nodoc:
|
|
4
|
+
include ::RubyBreaker::Broken
|
|
3
5
|
end # of ArgumentError
|
|
4
|
-
|
|
5
|
-
|
|
6
|
+
|
|
7
|
+
class Array #:nodoc:
|
|
8
|
+
include ::RubyBreaker::Broken
|
|
6
9
|
typesig("&(?*) -> basic_object")
|
|
7
10
|
typesig("*(?*) -> basic_object")
|
|
8
11
|
typesig("+(?*) -> basic_object")
|
|
@@ -91,22 +94,22 @@ class Array
|
|
|
91
94
|
typesig("values_at(?*) -> basic_object")
|
|
92
95
|
typesig("zip(?*) -> basic_object")
|
|
93
96
|
typesig("|(?*) -> basic_object")
|
|
94
|
-
|
|
95
97
|
end # of Array
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
end # of BasicObject
|
|
108
|
-
|
|
109
|
-
|
|
98
|
+
|
|
99
|
+
# class BasicObject #:nodoc:
|
|
100
|
+
# include ::RubyBreaker::Broken
|
|
101
|
+
# typesig("!(?*) -> basic_object")
|
|
102
|
+
# typesig("!=(?*) -> basic_object")
|
|
103
|
+
# typesig("==(?*) -> basic_object")
|
|
104
|
+
# typesig("__id__(?*) -> basic_object")
|
|
105
|
+
# typesig("__send__(?*) -> basic_object")
|
|
106
|
+
# typesig("equal?(?*) -> basic_object")
|
|
107
|
+
# typesig("instance_eval(?*) -> basic_object")
|
|
108
|
+
# typesig("instance_exec(?*) -> basic_object")
|
|
109
|
+
# end # of BasicObject
|
|
110
|
+
|
|
111
|
+
class Bignum #:nodoc:
|
|
112
|
+
include ::RubyBreaker::Broken
|
|
110
113
|
typesig("%(?*) -> basic_object")
|
|
111
114
|
typesig("&(?*) -> basic_object")
|
|
112
115
|
typesig("*(?*) -> basic_object")
|
|
@@ -143,27 +146,27 @@ class Bignum
|
|
|
143
146
|
typesig("to_s(?*) -> basic_object")
|
|
144
147
|
typesig("|(?*) -> basic_object")
|
|
145
148
|
typesig("~(?*) -> basic_object")
|
|
146
|
-
|
|
147
149
|
end # of Bignum
|
|
148
|
-
|
|
149
|
-
|
|
150
|
+
|
|
151
|
+
class Binding #:nodoc:
|
|
152
|
+
include ::RubyBreaker::Broken
|
|
150
153
|
typesig("clone(?*) -> basic_object")
|
|
151
154
|
typesig("dup(?*) -> basic_object")
|
|
152
155
|
typesig("eval(?*) -> basic_object")
|
|
153
|
-
|
|
154
156
|
end # of Binding
|
|
155
|
-
|
|
156
|
-
|
|
157
|
+
|
|
158
|
+
module Comparable #:nodoc:
|
|
159
|
+
include ::RubyBreaker::Broken
|
|
157
160
|
typesig("<(?*) -> basic_object")
|
|
158
161
|
typesig("<=(?*) -> basic_object")
|
|
159
162
|
typesig("==(?*) -> basic_object")
|
|
160
163
|
typesig(">(?*) -> basic_object")
|
|
161
164
|
typesig(">=(?*) -> basic_object")
|
|
162
165
|
typesig("between?(?*) -> basic_object")
|
|
163
|
-
|
|
164
166
|
end # of Comparable
|
|
165
|
-
|
|
166
|
-
|
|
167
|
+
|
|
168
|
+
class Complex #:nodoc:
|
|
169
|
+
include ::RubyBreaker::Broken
|
|
167
170
|
typesig("*(?*) -> basic_object")
|
|
168
171
|
typesig("**(?*) -> basic_object")
|
|
169
172
|
typesig("+(?*) -> basic_object")
|
|
@@ -201,13 +204,14 @@ class Complex
|
|
|
201
204
|
typesig("to_i(?*) -> basic_object")
|
|
202
205
|
typesig("to_r(?*) -> basic_object")
|
|
203
206
|
typesig("to_s(?*) -> basic_object")
|
|
204
|
-
|
|
205
207
|
end # of Complex
|
|
206
|
-
|
|
207
|
-
|
|
208
|
+
|
|
209
|
+
class Data #:nodoc:
|
|
210
|
+
include ::RubyBreaker::Broken
|
|
208
211
|
end # of Data
|
|
209
|
-
|
|
210
|
-
|
|
212
|
+
|
|
213
|
+
class Dir #:nodoc:
|
|
214
|
+
include ::RubyBreaker::Broken
|
|
211
215
|
typesig("close(?*) -> basic_object")
|
|
212
216
|
typesig("each(?*) -> basic_object")
|
|
213
217
|
typesig("inspect(?*) -> basic_object")
|
|
@@ -219,13 +223,14 @@ class Dir
|
|
|
219
223
|
typesig("seek(?*) -> basic_object")
|
|
220
224
|
typesig("tell(?*) -> basic_object")
|
|
221
225
|
typesig("to_path(?*) -> basic_object")
|
|
222
|
-
|
|
223
226
|
end # of Dir
|
|
224
|
-
|
|
225
|
-
|
|
227
|
+
|
|
228
|
+
class EOFError #:nodoc:
|
|
229
|
+
include ::RubyBreaker::Broken
|
|
226
230
|
end # of EOFError
|
|
227
|
-
|
|
228
|
-
|
|
231
|
+
|
|
232
|
+
class Encoding #:nodoc:
|
|
233
|
+
include ::RubyBreaker::Broken
|
|
229
234
|
typesig("_dump(?*) -> basic_object")
|
|
230
235
|
typesig("ascii_compatible?(?*) -> basic_object")
|
|
231
236
|
typesig("dummy?(?*) -> basic_object")
|
|
@@ -234,11 +239,13 @@ class Encoding
|
|
|
234
239
|
typesig("names(?*) -> basic_object")
|
|
235
240
|
typesig("replicate(?*) -> basic_object")
|
|
236
241
|
typesig("to_s(?*) -> basic_object")
|
|
237
|
-
|
|
238
|
-
|
|
242
|
+
|
|
243
|
+
class Encoding::CompatibilityError #:nodoc:
|
|
244
|
+
include ::RubyBreaker::Broken
|
|
239
245
|
end # of Encoding::CompatibilityError
|
|
240
|
-
|
|
241
|
-
|
|
246
|
+
|
|
247
|
+
class Encoding::Converter #:nodoc:
|
|
248
|
+
include ::RubyBreaker::Broken
|
|
242
249
|
typesig("==(?*) -> basic_object")
|
|
243
250
|
typesig("convert(?*) -> basic_object")
|
|
244
251
|
typesig("convpath(?*) -> basic_object")
|
|
@@ -253,13 +260,14 @@ class Encoding
|
|
|
253
260
|
typesig("replacement(?*) -> basic_object")
|
|
254
261
|
typesig("replacement=(?*) -> basic_object")
|
|
255
262
|
typesig("source_encoding(?*) -> basic_object")
|
|
256
|
-
|
|
257
263
|
end # of Encoding::Converter
|
|
258
|
-
|
|
259
|
-
|
|
264
|
+
|
|
265
|
+
class Encoding::ConverterNotFoundError #:nodoc:
|
|
266
|
+
include ::RubyBreaker::Broken
|
|
260
267
|
end # of Encoding::ConverterNotFoundError
|
|
261
|
-
|
|
262
|
-
|
|
268
|
+
|
|
269
|
+
class Encoding::InvalidByteSequenceError #:nodoc:
|
|
270
|
+
include ::RubyBreaker::Broken
|
|
263
271
|
typesig("destination_encoding(?*) -> basic_object")
|
|
264
272
|
typesig("destination_encoding_name(?*) -> basic_object")
|
|
265
273
|
typesig("error_bytes(?*) -> basic_object")
|
|
@@ -267,24 +275,24 @@ class Encoding
|
|
|
267
275
|
typesig("readagain_bytes(?*) -> basic_object")
|
|
268
276
|
typesig("source_encoding(?*) -> basic_object")
|
|
269
277
|
typesig("source_encoding_name(?*) -> basic_object")
|
|
270
|
-
|
|
271
278
|
end # of Encoding::InvalidByteSequenceError
|
|
272
|
-
|
|
273
|
-
|
|
279
|
+
|
|
280
|
+
class Encoding::UndefinedConversionError #:nodoc:
|
|
281
|
+
include ::RubyBreaker::Broken
|
|
274
282
|
typesig("destination_encoding(?*) -> basic_object")
|
|
275
283
|
typesig("destination_encoding_name(?*) -> basic_object")
|
|
276
284
|
typesig("error_char(?*) -> basic_object")
|
|
277
285
|
typesig("source_encoding(?*) -> basic_object")
|
|
278
286
|
typesig("source_encoding_name(?*) -> basic_object")
|
|
279
|
-
|
|
280
287
|
end # of Encoding::UndefinedConversionError
|
|
281
|
-
|
|
282
288
|
end # of Encoding
|
|
283
|
-
|
|
284
|
-
|
|
289
|
+
|
|
290
|
+
class EncodingError #:nodoc:
|
|
291
|
+
include ::RubyBreaker::Broken
|
|
285
292
|
end # of EncodingError
|
|
286
|
-
|
|
287
|
-
|
|
293
|
+
|
|
294
|
+
module Enumerable #:nodoc:
|
|
295
|
+
include ::RubyBreaker::Broken
|
|
288
296
|
typesig("all?(?*) -> basic_object")
|
|
289
297
|
typesig("any?(?*) -> basic_object")
|
|
290
298
|
typesig("chunk(?*) -> basic_object")
|
|
@@ -332,10 +340,10 @@ module Enumerable
|
|
|
332
340
|
typesig("take_while(?*) -> basic_object")
|
|
333
341
|
typesig("to_a(?*) -> basic_object")
|
|
334
342
|
typesig("zip(?*) -> basic_object")
|
|
335
|
-
|
|
336
343
|
end # of Enumerable
|
|
337
|
-
|
|
338
|
-
|
|
344
|
+
|
|
345
|
+
class Enumerator #:nodoc:
|
|
346
|
+
include ::RubyBreaker::Broken
|
|
339
347
|
typesig("each(?*) -> basic_object")
|
|
340
348
|
typesig("each_with_index(?*) -> basic_object")
|
|
341
349
|
typesig("each_with_object(?*) -> basic_object")
|
|
@@ -348,320 +356,421 @@ class Enumerator
|
|
|
348
356
|
typesig("rewind(?*) -> basic_object")
|
|
349
357
|
typesig("with_index(?*) -> basic_object")
|
|
350
358
|
typesig("with_object(?*) -> basic_object")
|
|
351
|
-
|
|
352
|
-
|
|
359
|
+
|
|
360
|
+
class Enumerator::Generator #:nodoc:
|
|
361
|
+
include ::RubyBreaker::Broken
|
|
362
|
+
typesig("each(?*) -> basic_object")
|
|
353
363
|
end # of Enumerator::Generator
|
|
354
|
-
|
|
355
|
-
|
|
364
|
+
|
|
365
|
+
class Enumerator::Yielder #:nodoc:
|
|
366
|
+
include ::RubyBreaker::Broken
|
|
356
367
|
typesig("<<(?*) -> basic_object")
|
|
357
368
|
typesig("yield(?*) -> basic_object")
|
|
358
|
-
|
|
359
369
|
end # of Enumerator::Yielder
|
|
360
|
-
|
|
361
370
|
end # of Enumerator
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
371
|
+
|
|
372
|
+
module Errno #:nodoc:
|
|
373
|
+
include ::RubyBreaker::Broken
|
|
374
|
+
|
|
375
|
+
class Errno::E2BIG #:nodoc:
|
|
376
|
+
include ::RubyBreaker::Broken
|
|
366
377
|
end # of Errno::E2BIG
|
|
367
|
-
|
|
368
|
-
|
|
378
|
+
|
|
379
|
+
class Errno::EACCES #:nodoc:
|
|
380
|
+
include ::RubyBreaker::Broken
|
|
369
381
|
end # of Errno::EACCES
|
|
370
|
-
|
|
371
|
-
|
|
382
|
+
|
|
383
|
+
class Errno::EADDRINUSE #:nodoc:
|
|
384
|
+
include ::RubyBreaker::Broken
|
|
372
385
|
end # of Errno::EADDRINUSE
|
|
373
|
-
|
|
374
|
-
|
|
386
|
+
|
|
387
|
+
class Errno::EADDRNOTAVAIL #:nodoc:
|
|
388
|
+
include ::RubyBreaker::Broken
|
|
375
389
|
end # of Errno::EADDRNOTAVAIL
|
|
376
|
-
|
|
377
|
-
|
|
390
|
+
|
|
391
|
+
class Errno::NOERROR #:nodoc:
|
|
392
|
+
include ::RubyBreaker::Broken
|
|
378
393
|
end # of Errno::NOERROR
|
|
379
|
-
|
|
380
|
-
|
|
394
|
+
|
|
395
|
+
class Errno::EAFNOSUPPORT #:nodoc:
|
|
396
|
+
include ::RubyBreaker::Broken
|
|
381
397
|
end # of Errno::EAFNOSUPPORT
|
|
382
|
-
|
|
383
|
-
|
|
398
|
+
|
|
399
|
+
class Errno::EAGAIN #:nodoc:
|
|
400
|
+
include ::RubyBreaker::Broken
|
|
384
401
|
end # of Errno::EAGAIN
|
|
385
|
-
|
|
386
|
-
|
|
402
|
+
|
|
403
|
+
class Errno::EALREADY #:nodoc:
|
|
404
|
+
include ::RubyBreaker::Broken
|
|
387
405
|
end # of Errno::EALREADY
|
|
388
|
-
|
|
389
|
-
|
|
406
|
+
|
|
407
|
+
class Errno::EAUTH #:nodoc:
|
|
408
|
+
include ::RubyBreaker::Broken
|
|
390
409
|
end # of Errno::EAUTH
|
|
391
|
-
|
|
392
|
-
|
|
410
|
+
|
|
411
|
+
class Errno::EBADF #:nodoc:
|
|
412
|
+
include ::RubyBreaker::Broken
|
|
393
413
|
end # of Errno::EBADF
|
|
394
|
-
|
|
395
|
-
|
|
414
|
+
|
|
415
|
+
class Errno::EBADMSG #:nodoc:
|
|
416
|
+
include ::RubyBreaker::Broken
|
|
396
417
|
end # of Errno::EBADMSG
|
|
397
|
-
|
|
398
|
-
|
|
418
|
+
|
|
419
|
+
class Errno::EBADRPC #:nodoc:
|
|
420
|
+
include ::RubyBreaker::Broken
|
|
399
421
|
end # of Errno::EBADRPC
|
|
400
|
-
|
|
401
|
-
|
|
422
|
+
|
|
423
|
+
class Errno::EBUSY #:nodoc:
|
|
424
|
+
include ::RubyBreaker::Broken
|
|
402
425
|
end # of Errno::EBUSY
|
|
403
|
-
|
|
404
|
-
|
|
426
|
+
|
|
427
|
+
class Errno::ECANCELED #:nodoc:
|
|
428
|
+
include ::RubyBreaker::Broken
|
|
405
429
|
end # of Errno::ECANCELED
|
|
406
|
-
|
|
407
|
-
|
|
430
|
+
|
|
431
|
+
class Errno::ECHILD #:nodoc:
|
|
432
|
+
include ::RubyBreaker::Broken
|
|
408
433
|
end # of Errno::ECHILD
|
|
409
|
-
|
|
410
|
-
|
|
434
|
+
|
|
435
|
+
class Errno::ECONNABORTED #:nodoc:
|
|
436
|
+
include ::RubyBreaker::Broken
|
|
411
437
|
end # of Errno::ECONNABORTED
|
|
412
|
-
|
|
413
|
-
|
|
438
|
+
|
|
439
|
+
class Errno::ECONNREFUSED #:nodoc:
|
|
440
|
+
include ::RubyBreaker::Broken
|
|
414
441
|
end # of Errno::ECONNREFUSED
|
|
415
|
-
|
|
416
|
-
|
|
442
|
+
|
|
443
|
+
class Errno::ECONNRESET #:nodoc:
|
|
444
|
+
include ::RubyBreaker::Broken
|
|
417
445
|
end # of Errno::ECONNRESET
|
|
418
|
-
|
|
419
|
-
|
|
446
|
+
|
|
447
|
+
class Errno::EDEADLK #:nodoc:
|
|
448
|
+
include ::RubyBreaker::Broken
|
|
420
449
|
end # of Errno::EDEADLK
|
|
421
|
-
|
|
422
|
-
|
|
450
|
+
|
|
451
|
+
class Errno::EDESTADDRREQ #:nodoc:
|
|
452
|
+
include ::RubyBreaker::Broken
|
|
423
453
|
end # of Errno::EDESTADDRREQ
|
|
424
|
-
|
|
425
|
-
|
|
454
|
+
|
|
455
|
+
class Errno::EDOM #:nodoc:
|
|
456
|
+
include ::RubyBreaker::Broken
|
|
426
457
|
end # of Errno::EDOM
|
|
427
|
-
|
|
428
|
-
|
|
458
|
+
|
|
459
|
+
class Errno::EDQUOT #:nodoc:
|
|
460
|
+
include ::RubyBreaker::Broken
|
|
429
461
|
end # of Errno::EDQUOT
|
|
430
|
-
|
|
431
|
-
|
|
462
|
+
|
|
463
|
+
class Errno::EEXIST #:nodoc:
|
|
464
|
+
include ::RubyBreaker::Broken
|
|
432
465
|
end # of Errno::EEXIST
|
|
433
|
-
|
|
434
|
-
|
|
466
|
+
|
|
467
|
+
class Errno::EFAULT #:nodoc:
|
|
468
|
+
include ::RubyBreaker::Broken
|
|
435
469
|
end # of Errno::EFAULT
|
|
436
|
-
|
|
437
|
-
|
|
470
|
+
|
|
471
|
+
class Errno::EFBIG #:nodoc:
|
|
472
|
+
include ::RubyBreaker::Broken
|
|
438
473
|
end # of Errno::EFBIG
|
|
439
|
-
|
|
440
|
-
|
|
474
|
+
|
|
475
|
+
class Errno::EFTYPE #:nodoc:
|
|
476
|
+
include ::RubyBreaker::Broken
|
|
441
477
|
end # of Errno::EFTYPE
|
|
442
|
-
|
|
443
|
-
|
|
478
|
+
|
|
479
|
+
class Errno::EHOSTDOWN #:nodoc:
|
|
480
|
+
include ::RubyBreaker::Broken
|
|
444
481
|
end # of Errno::EHOSTDOWN
|
|
445
|
-
|
|
446
|
-
|
|
482
|
+
|
|
483
|
+
class Errno::EHOSTUNREACH #:nodoc:
|
|
484
|
+
include ::RubyBreaker::Broken
|
|
447
485
|
end # of Errno::EHOSTUNREACH
|
|
448
|
-
|
|
449
|
-
|
|
486
|
+
|
|
487
|
+
class Errno::EIDRM #:nodoc:
|
|
488
|
+
include ::RubyBreaker::Broken
|
|
450
489
|
end # of Errno::EIDRM
|
|
451
|
-
|
|
452
|
-
|
|
490
|
+
|
|
491
|
+
class Errno::EILSEQ #:nodoc:
|
|
492
|
+
include ::RubyBreaker::Broken
|
|
453
493
|
end # of Errno::EILSEQ
|
|
454
|
-
|
|
455
|
-
|
|
494
|
+
|
|
495
|
+
class Errno::EINPROGRESS #:nodoc:
|
|
496
|
+
include ::RubyBreaker::Broken
|
|
456
497
|
end # of Errno::EINPROGRESS
|
|
457
|
-
|
|
458
|
-
|
|
498
|
+
|
|
499
|
+
class Errno::EINTR #:nodoc:
|
|
500
|
+
include ::RubyBreaker::Broken
|
|
459
501
|
end # of Errno::EINTR
|
|
460
|
-
|
|
461
|
-
|
|
502
|
+
|
|
503
|
+
class Errno::EINVAL #:nodoc:
|
|
504
|
+
include ::RubyBreaker::Broken
|
|
462
505
|
end # of Errno::EINVAL
|
|
463
|
-
|
|
464
|
-
|
|
506
|
+
|
|
507
|
+
class Errno::EIO #:nodoc:
|
|
508
|
+
include ::RubyBreaker::Broken
|
|
465
509
|
end # of Errno::EIO
|
|
466
|
-
|
|
467
|
-
|
|
510
|
+
|
|
511
|
+
class Errno::EISCONN #:nodoc:
|
|
512
|
+
include ::RubyBreaker::Broken
|
|
468
513
|
end # of Errno::EISCONN
|
|
469
|
-
|
|
470
|
-
|
|
514
|
+
|
|
515
|
+
class Errno::EISDIR #:nodoc:
|
|
516
|
+
include ::RubyBreaker::Broken
|
|
471
517
|
end # of Errno::EISDIR
|
|
472
|
-
|
|
473
|
-
|
|
518
|
+
|
|
519
|
+
class Errno::ELOOP #:nodoc:
|
|
520
|
+
include ::RubyBreaker::Broken
|
|
474
521
|
end # of Errno::ELOOP
|
|
475
|
-
|
|
476
|
-
|
|
522
|
+
|
|
523
|
+
class Errno::EMFILE #:nodoc:
|
|
524
|
+
include ::RubyBreaker::Broken
|
|
477
525
|
end # of Errno::EMFILE
|
|
478
|
-
|
|
479
|
-
|
|
526
|
+
|
|
527
|
+
class Errno::EMLINK #:nodoc:
|
|
528
|
+
include ::RubyBreaker::Broken
|
|
480
529
|
end # of Errno::EMLINK
|
|
481
|
-
|
|
482
|
-
|
|
530
|
+
|
|
531
|
+
class Errno::EMSGSIZE #:nodoc:
|
|
532
|
+
include ::RubyBreaker::Broken
|
|
483
533
|
end # of Errno::EMSGSIZE
|
|
484
|
-
|
|
485
|
-
|
|
534
|
+
|
|
535
|
+
class Errno::EMULTIHOP #:nodoc:
|
|
536
|
+
include ::RubyBreaker::Broken
|
|
486
537
|
end # of Errno::EMULTIHOP
|
|
487
|
-
|
|
488
|
-
|
|
538
|
+
|
|
539
|
+
class Errno::ENAMETOOLONG #:nodoc:
|
|
540
|
+
include ::RubyBreaker::Broken
|
|
489
541
|
end # of Errno::ENAMETOOLONG
|
|
490
|
-
|
|
491
|
-
|
|
542
|
+
|
|
543
|
+
class Errno::ENEEDAUTH #:nodoc:
|
|
544
|
+
include ::RubyBreaker::Broken
|
|
492
545
|
end # of Errno::ENEEDAUTH
|
|
493
|
-
|
|
494
|
-
|
|
546
|
+
|
|
547
|
+
class Errno::ENETDOWN #:nodoc:
|
|
548
|
+
include ::RubyBreaker::Broken
|
|
495
549
|
end # of Errno::ENETDOWN
|
|
496
|
-
|
|
497
|
-
|
|
550
|
+
|
|
551
|
+
class Errno::ENETRESET #:nodoc:
|
|
552
|
+
include ::RubyBreaker::Broken
|
|
498
553
|
end # of Errno::ENETRESET
|
|
499
|
-
|
|
500
|
-
|
|
554
|
+
|
|
555
|
+
class Errno::ENETUNREACH #:nodoc:
|
|
556
|
+
include ::RubyBreaker::Broken
|
|
501
557
|
end # of Errno::ENETUNREACH
|
|
502
|
-
|
|
503
|
-
|
|
558
|
+
|
|
559
|
+
class Errno::ENFILE #:nodoc:
|
|
560
|
+
include ::RubyBreaker::Broken
|
|
504
561
|
end # of Errno::ENFILE
|
|
505
|
-
|
|
506
|
-
|
|
562
|
+
|
|
563
|
+
class Errno::ENOATTR #:nodoc:
|
|
564
|
+
include ::RubyBreaker::Broken
|
|
507
565
|
end # of Errno::ENOATTR
|
|
508
|
-
|
|
509
|
-
|
|
566
|
+
|
|
567
|
+
class Errno::ENOBUFS #:nodoc:
|
|
568
|
+
include ::RubyBreaker::Broken
|
|
510
569
|
end # of Errno::ENOBUFS
|
|
511
|
-
|
|
512
|
-
|
|
570
|
+
|
|
571
|
+
class Errno::ENODATA #:nodoc:
|
|
572
|
+
include ::RubyBreaker::Broken
|
|
513
573
|
end # of Errno::ENODATA
|
|
514
|
-
|
|
515
|
-
|
|
574
|
+
|
|
575
|
+
class Errno::ENODEV #:nodoc:
|
|
576
|
+
include ::RubyBreaker::Broken
|
|
516
577
|
end # of Errno::ENODEV
|
|
517
|
-
|
|
518
|
-
|
|
578
|
+
|
|
579
|
+
class Errno::ENOENT #:nodoc:
|
|
580
|
+
include ::RubyBreaker::Broken
|
|
519
581
|
end # of Errno::ENOENT
|
|
520
|
-
|
|
521
|
-
|
|
582
|
+
|
|
583
|
+
class Errno::ENOEXEC #:nodoc:
|
|
584
|
+
include ::RubyBreaker::Broken
|
|
522
585
|
end # of Errno::ENOEXEC
|
|
523
|
-
|
|
524
|
-
|
|
586
|
+
|
|
587
|
+
class Errno::ENOLCK #:nodoc:
|
|
588
|
+
include ::RubyBreaker::Broken
|
|
525
589
|
end # of Errno::ENOLCK
|
|
526
|
-
|
|
527
|
-
|
|
590
|
+
|
|
591
|
+
class Errno::ENOLINK #:nodoc:
|
|
592
|
+
include ::RubyBreaker::Broken
|
|
528
593
|
end # of Errno::ENOLINK
|
|
529
|
-
|
|
530
|
-
|
|
594
|
+
|
|
595
|
+
class Errno::ENOMEM #:nodoc:
|
|
596
|
+
include ::RubyBreaker::Broken
|
|
531
597
|
end # of Errno::ENOMEM
|
|
532
|
-
|
|
533
|
-
|
|
598
|
+
|
|
599
|
+
class Errno::ENOMSG #:nodoc:
|
|
600
|
+
include ::RubyBreaker::Broken
|
|
534
601
|
end # of Errno::ENOMSG
|
|
535
|
-
|
|
536
|
-
|
|
602
|
+
|
|
603
|
+
class Errno::ENOPROTOOPT #:nodoc:
|
|
604
|
+
include ::RubyBreaker::Broken
|
|
537
605
|
end # of Errno::ENOPROTOOPT
|
|
538
|
-
|
|
539
|
-
|
|
606
|
+
|
|
607
|
+
class Errno::ENOSPC #:nodoc:
|
|
608
|
+
include ::RubyBreaker::Broken
|
|
540
609
|
end # of Errno::ENOSPC
|
|
541
|
-
|
|
542
|
-
|
|
610
|
+
|
|
611
|
+
class Errno::ENOSR #:nodoc:
|
|
612
|
+
include ::RubyBreaker::Broken
|
|
543
613
|
end # of Errno::ENOSR
|
|
544
|
-
|
|
545
|
-
|
|
614
|
+
|
|
615
|
+
class Errno::ENOSTR #:nodoc:
|
|
616
|
+
include ::RubyBreaker::Broken
|
|
546
617
|
end # of Errno::ENOSTR
|
|
547
|
-
|
|
548
|
-
|
|
618
|
+
|
|
619
|
+
class Errno::ENOSYS #:nodoc:
|
|
620
|
+
include ::RubyBreaker::Broken
|
|
549
621
|
end # of Errno::ENOSYS
|
|
550
|
-
|
|
551
|
-
|
|
622
|
+
|
|
623
|
+
class Errno::ENOTBLK #:nodoc:
|
|
624
|
+
include ::RubyBreaker::Broken
|
|
552
625
|
end # of Errno::ENOTBLK
|
|
553
|
-
|
|
554
|
-
|
|
626
|
+
|
|
627
|
+
class Errno::ENOTCONN #:nodoc:
|
|
628
|
+
include ::RubyBreaker::Broken
|
|
555
629
|
end # of Errno::ENOTCONN
|
|
556
|
-
|
|
557
|
-
|
|
630
|
+
|
|
631
|
+
class Errno::ENOTDIR #:nodoc:
|
|
632
|
+
include ::RubyBreaker::Broken
|
|
558
633
|
end # of Errno::ENOTDIR
|
|
559
|
-
|
|
560
|
-
|
|
634
|
+
|
|
635
|
+
class Errno::ENOTEMPTY #:nodoc:
|
|
636
|
+
include ::RubyBreaker::Broken
|
|
561
637
|
end # of Errno::ENOTEMPTY
|
|
562
|
-
|
|
563
|
-
|
|
638
|
+
|
|
639
|
+
class Errno::ENOTRECOVERABLE #:nodoc:
|
|
640
|
+
include ::RubyBreaker::Broken
|
|
564
641
|
end # of Errno::ENOTRECOVERABLE
|
|
565
|
-
|
|
566
|
-
|
|
642
|
+
|
|
643
|
+
class Errno::ENOTSOCK #:nodoc:
|
|
644
|
+
include ::RubyBreaker::Broken
|
|
567
645
|
end # of Errno::ENOTSOCK
|
|
568
|
-
|
|
569
|
-
|
|
646
|
+
|
|
647
|
+
class Errno::ENOTSUP #:nodoc:
|
|
648
|
+
include ::RubyBreaker::Broken
|
|
570
649
|
end # of Errno::ENOTSUP
|
|
571
|
-
|
|
572
|
-
|
|
650
|
+
|
|
651
|
+
class Errno::ENOTTY #:nodoc:
|
|
652
|
+
include ::RubyBreaker::Broken
|
|
573
653
|
end # of Errno::ENOTTY
|
|
574
|
-
|
|
575
|
-
|
|
654
|
+
|
|
655
|
+
class Errno::ENXIO #:nodoc:
|
|
656
|
+
include ::RubyBreaker::Broken
|
|
576
657
|
end # of Errno::ENXIO
|
|
577
|
-
|
|
578
|
-
|
|
658
|
+
|
|
659
|
+
class Errno::EOPNOTSUPP #:nodoc:
|
|
660
|
+
include ::RubyBreaker::Broken
|
|
579
661
|
end # of Errno::EOPNOTSUPP
|
|
580
|
-
|
|
581
|
-
|
|
662
|
+
|
|
663
|
+
class Errno::EOVERFLOW #:nodoc:
|
|
664
|
+
include ::RubyBreaker::Broken
|
|
582
665
|
end # of Errno::EOVERFLOW
|
|
583
|
-
|
|
584
|
-
|
|
666
|
+
|
|
667
|
+
class Errno::EOWNERDEAD #:nodoc:
|
|
668
|
+
include ::RubyBreaker::Broken
|
|
585
669
|
end # of Errno::EOWNERDEAD
|
|
586
|
-
|
|
587
|
-
|
|
670
|
+
|
|
671
|
+
class Errno::EPERM #:nodoc:
|
|
672
|
+
include ::RubyBreaker::Broken
|
|
588
673
|
end # of Errno::EPERM
|
|
589
|
-
|
|
590
|
-
|
|
674
|
+
|
|
675
|
+
class Errno::EPFNOSUPPORT #:nodoc:
|
|
676
|
+
include ::RubyBreaker::Broken
|
|
591
677
|
end # of Errno::EPFNOSUPPORT
|
|
592
|
-
|
|
593
|
-
|
|
678
|
+
|
|
679
|
+
class Errno::EPIPE #:nodoc:
|
|
680
|
+
include ::RubyBreaker::Broken
|
|
594
681
|
end # of Errno::EPIPE
|
|
595
|
-
|
|
596
|
-
|
|
682
|
+
|
|
683
|
+
class Errno::EPROCLIM #:nodoc:
|
|
684
|
+
include ::RubyBreaker::Broken
|
|
597
685
|
end # of Errno::EPROCLIM
|
|
598
|
-
|
|
599
|
-
|
|
686
|
+
|
|
687
|
+
class Errno::EPROCUNAVAIL #:nodoc:
|
|
688
|
+
include ::RubyBreaker::Broken
|
|
600
689
|
end # of Errno::EPROCUNAVAIL
|
|
601
|
-
|
|
602
|
-
|
|
690
|
+
|
|
691
|
+
class Errno::EPROGMISMATCH #:nodoc:
|
|
692
|
+
include ::RubyBreaker::Broken
|
|
603
693
|
end # of Errno::EPROGMISMATCH
|
|
604
|
-
|
|
605
|
-
|
|
694
|
+
|
|
695
|
+
class Errno::EPROGUNAVAIL #:nodoc:
|
|
696
|
+
include ::RubyBreaker::Broken
|
|
606
697
|
end # of Errno::EPROGUNAVAIL
|
|
607
|
-
|
|
608
|
-
|
|
698
|
+
|
|
699
|
+
class Errno::EPROTO #:nodoc:
|
|
700
|
+
include ::RubyBreaker::Broken
|
|
609
701
|
end # of Errno::EPROTO
|
|
610
|
-
|
|
611
|
-
|
|
702
|
+
|
|
703
|
+
class Errno::EPROTONOSUPPORT #:nodoc:
|
|
704
|
+
include ::RubyBreaker::Broken
|
|
612
705
|
end # of Errno::EPROTONOSUPPORT
|
|
613
|
-
|
|
614
|
-
|
|
706
|
+
|
|
707
|
+
class Errno::EPROTOTYPE #:nodoc:
|
|
708
|
+
include ::RubyBreaker::Broken
|
|
615
709
|
end # of Errno::EPROTOTYPE
|
|
616
|
-
|
|
617
|
-
|
|
710
|
+
|
|
711
|
+
class Errno::ERANGE #:nodoc:
|
|
712
|
+
include ::RubyBreaker::Broken
|
|
618
713
|
end # of Errno::ERANGE
|
|
619
|
-
|
|
620
|
-
|
|
714
|
+
|
|
715
|
+
class Errno::EREMOTE #:nodoc:
|
|
716
|
+
include ::RubyBreaker::Broken
|
|
621
717
|
end # of Errno::EREMOTE
|
|
622
|
-
|
|
623
|
-
|
|
718
|
+
|
|
719
|
+
class Errno::EROFS #:nodoc:
|
|
720
|
+
include ::RubyBreaker::Broken
|
|
624
721
|
end # of Errno::EROFS
|
|
625
|
-
|
|
626
|
-
|
|
722
|
+
|
|
723
|
+
class Errno::ERPCMISMATCH #:nodoc:
|
|
724
|
+
include ::RubyBreaker::Broken
|
|
627
725
|
end # of Errno::ERPCMISMATCH
|
|
628
|
-
|
|
629
|
-
|
|
726
|
+
|
|
727
|
+
class Errno::ESHUTDOWN #:nodoc:
|
|
728
|
+
include ::RubyBreaker::Broken
|
|
630
729
|
end # of Errno::ESHUTDOWN
|
|
631
|
-
|
|
632
|
-
|
|
730
|
+
|
|
731
|
+
class Errno::ESOCKTNOSUPPORT #:nodoc:
|
|
732
|
+
include ::RubyBreaker::Broken
|
|
633
733
|
end # of Errno::ESOCKTNOSUPPORT
|
|
634
|
-
|
|
635
|
-
|
|
734
|
+
|
|
735
|
+
class Errno::ESPIPE #:nodoc:
|
|
736
|
+
include ::RubyBreaker::Broken
|
|
636
737
|
end # of Errno::ESPIPE
|
|
637
|
-
|
|
638
|
-
|
|
738
|
+
|
|
739
|
+
class Errno::ESRCH #:nodoc:
|
|
740
|
+
include ::RubyBreaker::Broken
|
|
639
741
|
end # of Errno::ESRCH
|
|
640
|
-
|
|
641
|
-
|
|
742
|
+
|
|
743
|
+
class Errno::ESTALE #:nodoc:
|
|
744
|
+
include ::RubyBreaker::Broken
|
|
642
745
|
end # of Errno::ESTALE
|
|
643
|
-
|
|
644
|
-
|
|
746
|
+
|
|
747
|
+
class Errno::ETIME #:nodoc:
|
|
748
|
+
include ::RubyBreaker::Broken
|
|
645
749
|
end # of Errno::ETIME
|
|
646
|
-
|
|
647
|
-
|
|
750
|
+
|
|
751
|
+
class Errno::ETIMEDOUT #:nodoc:
|
|
752
|
+
include ::RubyBreaker::Broken
|
|
648
753
|
end # of Errno::ETIMEDOUT
|
|
649
|
-
|
|
650
|
-
|
|
754
|
+
|
|
755
|
+
class Errno::ETOOMANYREFS #:nodoc:
|
|
756
|
+
include ::RubyBreaker::Broken
|
|
651
757
|
end # of Errno::ETOOMANYREFS
|
|
652
|
-
|
|
653
|
-
|
|
758
|
+
|
|
759
|
+
class Errno::ETXTBSY #:nodoc:
|
|
760
|
+
include ::RubyBreaker::Broken
|
|
654
761
|
end # of Errno::ETXTBSY
|
|
655
|
-
|
|
656
|
-
|
|
762
|
+
|
|
763
|
+
class Errno::EUSERS #:nodoc:
|
|
764
|
+
include ::RubyBreaker::Broken
|
|
657
765
|
end # of Errno::EUSERS
|
|
658
|
-
class Errno::EXDEV
|
|
659
|
-
include RubyBreaker::Broken;
|
|
660
|
-
end # of Errno::EXDEV
|
|
661
766
|
|
|
767
|
+
class Errno::EXDEV #:nodoc:
|
|
768
|
+
include ::RubyBreaker::Broken
|
|
769
|
+
end # of Errno::EXDEV
|
|
662
770
|
end # of Errno
|
|
663
|
-
|
|
664
|
-
|
|
771
|
+
|
|
772
|
+
class Exception #:nodoc:
|
|
773
|
+
include ::RubyBreaker::Broken
|
|
665
774
|
typesig("==(?*) -> basic_object")
|
|
666
775
|
typesig("backtrace(?*) -> basic_object")
|
|
667
776
|
typesig("exception(?*) -> basic_object")
|
|
@@ -669,24 +778,27 @@ class Exception
|
|
|
669
778
|
typesig("message(?*) -> basic_object")
|
|
670
779
|
typesig("set_backtrace(?*) -> basic_object")
|
|
671
780
|
typesig("to_s(?*) -> basic_object")
|
|
672
|
-
|
|
673
781
|
end # of Exception
|
|
674
|
-
|
|
675
|
-
|
|
782
|
+
|
|
783
|
+
class FalseClass #:nodoc:
|
|
784
|
+
include ::RubyBreaker::Broken
|
|
676
785
|
typesig("&(?*) -> basic_object")
|
|
677
786
|
typesig("^(?*) -> basic_object")
|
|
678
787
|
typesig("to_s(?*) -> basic_object")
|
|
679
788
|
typesig("|(?*) -> basic_object")
|
|
680
|
-
|
|
681
789
|
end # of FalseClass
|
|
682
|
-
|
|
683
|
-
|
|
790
|
+
|
|
791
|
+
class Fiber #:nodoc:
|
|
792
|
+
include ::RubyBreaker::Broken
|
|
793
|
+
typesig("resume(?*) -> basic_object")
|
|
684
794
|
end # of Fiber
|
|
685
|
-
|
|
686
|
-
|
|
795
|
+
|
|
796
|
+
class FiberError #:nodoc:
|
|
797
|
+
include ::RubyBreaker::Broken
|
|
687
798
|
end # of FiberError
|
|
688
|
-
|
|
689
|
-
|
|
799
|
+
|
|
800
|
+
class File #:nodoc:
|
|
801
|
+
include ::RubyBreaker::Broken
|
|
690
802
|
typesig("atime(?*) -> basic_object")
|
|
691
803
|
typesig("chmod(?*) -> basic_object")
|
|
692
804
|
typesig("chown(?*) -> basic_object")
|
|
@@ -698,11 +810,13 @@ class File
|
|
|
698
810
|
typesig("size(?*) -> basic_object")
|
|
699
811
|
typesig("to_path(?*) -> basic_object")
|
|
700
812
|
typesig("truncate(?*) -> basic_object")
|
|
701
|
-
|
|
702
|
-
|
|
813
|
+
|
|
814
|
+
module File::Constants #:nodoc:
|
|
815
|
+
include ::RubyBreaker::Broken
|
|
703
816
|
end # of File::Constants
|
|
704
|
-
|
|
705
|
-
|
|
817
|
+
|
|
818
|
+
class File::Stat #:nodoc:
|
|
819
|
+
include ::RubyBreaker::Broken
|
|
706
820
|
typesig("<=>(?*) -> basic_object")
|
|
707
821
|
typesig("atime(?*) -> basic_object")
|
|
708
822
|
typesig("blksize(?*) -> basic_object")
|
|
@@ -745,21 +859,23 @@ class File
|
|
|
745
859
|
typesig("writable?(?*) -> basic_object")
|
|
746
860
|
typesig("writable_real?(?*) -> basic_object")
|
|
747
861
|
typesig("zero?(?*) -> basic_object")
|
|
748
|
-
|
|
749
862
|
end # of File::Stat
|
|
750
|
-
|
|
751
|
-
|
|
863
|
+
|
|
864
|
+
module IO::WaitReadable #:nodoc:
|
|
865
|
+
include ::RubyBreaker::Broken
|
|
752
866
|
end # of IO::WaitReadable
|
|
753
|
-
module IO::WaitWritable
|
|
754
|
-
include RubyBreaker::Broken;
|
|
755
|
-
end # of IO::WaitWritable
|
|
756
867
|
|
|
868
|
+
module IO::WaitWritable #:nodoc:
|
|
869
|
+
include ::RubyBreaker::Broken
|
|
870
|
+
end # of IO::WaitWritable
|
|
757
871
|
end # of File
|
|
758
|
-
|
|
759
|
-
|
|
872
|
+
|
|
873
|
+
module FileTest #:nodoc:
|
|
874
|
+
include ::RubyBreaker::Broken
|
|
760
875
|
end # of FileTest
|
|
761
|
-
|
|
762
|
-
|
|
876
|
+
|
|
877
|
+
class Fixnum #:nodoc:
|
|
878
|
+
include ::RubyBreaker::Broken
|
|
763
879
|
typesig("%(?*) -> basic_object")
|
|
764
880
|
typesig("&(?*) -> basic_object")
|
|
765
881
|
typesig("*(?*) -> basic_object")
|
|
@@ -794,10 +910,10 @@ class Fixnum
|
|
|
794
910
|
typesig("zero?(?*) -> basic_object")
|
|
795
911
|
typesig("|(?*) -> basic_object")
|
|
796
912
|
typesig("~(?*) -> basic_object")
|
|
797
|
-
|
|
798
913
|
end # of Fixnum
|
|
799
|
-
|
|
800
|
-
|
|
914
|
+
|
|
915
|
+
class Float #:nodoc:
|
|
916
|
+
include ::RubyBreaker::Broken
|
|
801
917
|
typesig("%(?*) -> basic_object")
|
|
802
918
|
typesig("*(?*) -> basic_object")
|
|
803
919
|
typesig("**(?*) -> basic_object")
|
|
@@ -840,29 +956,32 @@ class Float
|
|
|
840
956
|
typesig("to_s(?*) -> basic_object")
|
|
841
957
|
typesig("truncate(?*) -> basic_object")
|
|
842
958
|
typesig("zero?(?*) -> basic_object")
|
|
843
|
-
|
|
844
959
|
end # of Float
|
|
845
|
-
|
|
846
|
-
|
|
960
|
+
|
|
961
|
+
class FloatDomainError #:nodoc:
|
|
962
|
+
include ::RubyBreaker::Broken
|
|
847
963
|
end # of FloatDomainError
|
|
848
|
-
|
|
849
|
-
|
|
964
|
+
|
|
965
|
+
module GC #:nodoc:
|
|
966
|
+
include ::RubyBreaker::Broken
|
|
850
967
|
typesig("garbage_collect(?*) -> basic_object")
|
|
851
|
-
module GC::Profiler
|
|
852
|
-
include RubyBreaker::Broken;
|
|
853
|
-
end # of GC::Profiler
|
|
854
968
|
|
|
969
|
+
module GC::Profiler #:nodoc:
|
|
970
|
+
include ::RubyBreaker::Broken
|
|
971
|
+
end # of GC::Profiler
|
|
855
972
|
end # of GC
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
973
|
+
|
|
974
|
+
module Gem #:nodoc:
|
|
975
|
+
include ::RubyBreaker::Broken
|
|
976
|
+
|
|
977
|
+
class Gem::Builder #:nodoc:
|
|
978
|
+
include ::RubyBreaker::Broken
|
|
860
979
|
typesig("build(?*) -> basic_object")
|
|
861
980
|
typesig("success(?*) -> basic_object")
|
|
862
|
-
|
|
863
981
|
end # of Gem::Builder
|
|
864
|
-
|
|
865
|
-
|
|
982
|
+
|
|
983
|
+
class Gem::SourceIndex #:nodoc:
|
|
984
|
+
include ::RubyBreaker::Broken
|
|
866
985
|
typesig("==(?*) -> basic_object")
|
|
867
986
|
typesig("_deprecated_==(?*) -> basic_object")
|
|
868
987
|
typesig("_deprecated_add_spec(?*) -> basic_object")
|
|
@@ -912,13 +1031,14 @@ module Gem
|
|
|
912
1031
|
typesig("spec_dirs(?*) -> basic_object")
|
|
913
1032
|
typesig("spec_dirs=(?*) -> basic_object")
|
|
914
1033
|
typesig("specification(?*) -> basic_object")
|
|
915
|
-
|
|
916
1034
|
end # of Gem::SourceIndex
|
|
917
|
-
|
|
918
|
-
|
|
1035
|
+
|
|
1036
|
+
class Gem::CommandLineError #:nodoc:
|
|
1037
|
+
include ::RubyBreaker::Broken
|
|
919
1038
|
end # of Gem::CommandLineError
|
|
920
|
-
|
|
921
|
-
|
|
1039
|
+
|
|
1040
|
+
class Gem::ConfigFile #:nodoc:
|
|
1041
|
+
include ::RubyBreaker::Broken
|
|
922
1042
|
typesig("==(?*) -> basic_object")
|
|
923
1043
|
typesig("[](?*) -> basic_object")
|
|
924
1044
|
typesig("[]=(?*) -> basic_object")
|
|
@@ -952,10 +1072,10 @@ module Gem
|
|
|
952
1072
|
typesig("verbose(?*) -> basic_object")
|
|
953
1073
|
typesig("verbose=(?*) -> basic_object")
|
|
954
1074
|
typesig("write(?*) -> basic_object")
|
|
955
|
-
|
|
956
1075
|
end # of Gem::ConfigFile
|
|
957
|
-
|
|
958
|
-
|
|
1076
|
+
|
|
1077
|
+
class Gem::Dependency #:nodoc:
|
|
1078
|
+
include ::RubyBreaker::Broken
|
|
959
1079
|
typesig("<=>(?*) -> basic_object")
|
|
960
1080
|
typesig("==(?*) -> basic_object")
|
|
961
1081
|
typesig("=~(?*) -> basic_object")
|
|
@@ -977,13 +1097,14 @@ module Gem
|
|
|
977
1097
|
typesig("to_spec(?*) -> basic_object")
|
|
978
1098
|
typesig("to_specs(?*) -> basic_object")
|
|
979
1099
|
typesig("type(?*) -> basic_object")
|
|
980
|
-
|
|
981
1100
|
end # of Gem::Dependency
|
|
982
|
-
|
|
983
|
-
|
|
1101
|
+
|
|
1102
|
+
class Gem::DependencyError #:nodoc:
|
|
1103
|
+
include ::RubyBreaker::Broken
|
|
984
1104
|
end # of Gem::DependencyError
|
|
985
|
-
|
|
986
|
-
|
|
1105
|
+
|
|
1106
|
+
class Gem::DependencyList #:nodoc:
|
|
1107
|
+
include ::RubyBreaker::Broken
|
|
987
1108
|
typesig("add(?*) -> basic_object")
|
|
988
1109
|
typesig("clear(?*) -> basic_object")
|
|
989
1110
|
typesig("dependency_order(?*) -> basic_object")
|
|
@@ -1001,50 +1122,57 @@ module Gem
|
|
|
1001
1122
|
typesig("tsort_each_child(?*) -> basic_object")
|
|
1002
1123
|
typesig("tsort_each_node(?*) -> basic_object")
|
|
1003
1124
|
typesig("why_not_ok?(?*) -> basic_object")
|
|
1004
|
-
class TSort::Cyclic
|
|
1005
|
-
include RubyBreaker::Broken;
|
|
1006
|
-
end # of TSort::Cyclic
|
|
1007
1125
|
|
|
1126
|
+
class TSort::Cyclic #:nodoc:
|
|
1127
|
+
include ::RubyBreaker::Broken
|
|
1128
|
+
end # of TSort::Cyclic
|
|
1008
1129
|
end # of Gem::DependencyList
|
|
1009
|
-
|
|
1010
|
-
|
|
1130
|
+
|
|
1131
|
+
class Gem::DependencyRemovalException #:nodoc:
|
|
1132
|
+
include ::RubyBreaker::Broken
|
|
1011
1133
|
end # of Gem::DependencyRemovalException
|
|
1012
|
-
|
|
1013
|
-
|
|
1134
|
+
|
|
1135
|
+
module Gem::Deprecate #:nodoc:
|
|
1136
|
+
include ::RubyBreaker::Broken
|
|
1014
1137
|
end # of Gem::Deprecate
|
|
1015
|
-
|
|
1016
|
-
|
|
1138
|
+
|
|
1139
|
+
class Gem::DocumentError #:nodoc:
|
|
1140
|
+
include ::RubyBreaker::Broken
|
|
1017
1141
|
end # of Gem::DocumentError
|
|
1018
|
-
|
|
1019
|
-
|
|
1142
|
+
|
|
1143
|
+
class Gem::EndOfYAMLException #:nodoc:
|
|
1144
|
+
include ::RubyBreaker::Broken
|
|
1020
1145
|
end # of Gem::EndOfYAMLException
|
|
1021
|
-
|
|
1022
|
-
|
|
1146
|
+
|
|
1147
|
+
class Gem::Exception #:nodoc:
|
|
1148
|
+
include ::RubyBreaker::Broken
|
|
1023
1149
|
end # of Gem::Exception
|
|
1024
|
-
|
|
1025
|
-
|
|
1150
|
+
|
|
1151
|
+
class Gem::FilePermissionError #:nodoc:
|
|
1152
|
+
include ::RubyBreaker::Broken
|
|
1026
1153
|
end # of Gem::FilePermissionError
|
|
1027
|
-
|
|
1028
|
-
|
|
1154
|
+
|
|
1155
|
+
class Gem::FormatException #:nodoc:
|
|
1156
|
+
include ::RubyBreaker::Broken
|
|
1029
1157
|
typesig("file_path(?*) -> basic_object")
|
|
1030
1158
|
typesig("file_path=(?*) -> basic_object")
|
|
1031
|
-
|
|
1032
1159
|
end # of Gem::FormatException
|
|
1033
|
-
|
|
1034
|
-
|
|
1160
|
+
|
|
1161
|
+
class Gem::GemNotFoundException #:nodoc:
|
|
1162
|
+
include ::RubyBreaker::Broken
|
|
1035
1163
|
typesig("errors(?*) -> basic_object")
|
|
1036
1164
|
typesig("name(?*) -> basic_object")
|
|
1037
1165
|
typesig("version(?*) -> basic_object")
|
|
1038
|
-
|
|
1039
1166
|
end # of Gem::GemNotFoundException
|
|
1040
|
-
|
|
1041
|
-
|
|
1167
|
+
|
|
1168
|
+
class Gem::GemNotInHomeException #:nodoc:
|
|
1169
|
+
include ::RubyBreaker::Broken
|
|
1042
1170
|
typesig("spec(?*) -> basic_object")
|
|
1043
1171
|
typesig("spec=(?*) -> basic_object")
|
|
1044
|
-
|
|
1045
1172
|
end # of Gem::GemNotInHomeException
|
|
1046
|
-
|
|
1047
|
-
|
|
1173
|
+
|
|
1174
|
+
class Gem::GemPathSearcher #:nodoc:
|
|
1175
|
+
include ::RubyBreaker::Broken
|
|
1048
1176
|
typesig("_deprecated_find(?*) -> basic_object")
|
|
1049
1177
|
typesig("_deprecated_find_active(?*) -> basic_object")
|
|
1050
1178
|
typesig("_deprecated_find_all(?*) -> basic_object")
|
|
@@ -1062,33 +1190,36 @@ module Gem
|
|
|
1062
1190
|
typesig("matching_file?(?*) -> basic_object")
|
|
1063
1191
|
typesig("matching_files(?*) -> basic_object")
|
|
1064
1192
|
typesig("matching_paths(?*) -> basic_object")
|
|
1065
|
-
|
|
1066
1193
|
end # of Gem::GemPathSearcher
|
|
1067
|
-
|
|
1068
|
-
|
|
1194
|
+
|
|
1195
|
+
class Gem::InstallError #:nodoc:
|
|
1196
|
+
include ::RubyBreaker::Broken
|
|
1069
1197
|
end # of Gem::InstallError
|
|
1070
|
-
|
|
1071
|
-
|
|
1198
|
+
|
|
1199
|
+
class Gem::InvalidSpecificationException #:nodoc:
|
|
1200
|
+
include ::RubyBreaker::Broken
|
|
1072
1201
|
end # of Gem::InvalidSpecificationException
|
|
1073
|
-
|
|
1074
|
-
|
|
1202
|
+
|
|
1203
|
+
class Gem::LoadError #:nodoc:
|
|
1204
|
+
include ::RubyBreaker::Broken
|
|
1075
1205
|
typesig("name(?*) -> basic_object")
|
|
1076
1206
|
typesig("name=(?*) -> basic_object")
|
|
1077
1207
|
typesig("requirement(?*) -> basic_object")
|
|
1078
1208
|
typesig("requirement=(?*) -> basic_object")
|
|
1079
|
-
|
|
1080
1209
|
end # of Gem::LoadError
|
|
1081
|
-
|
|
1082
|
-
|
|
1210
|
+
|
|
1211
|
+
class Gem::OperationNotSupportedError #:nodoc:
|
|
1212
|
+
include ::RubyBreaker::Broken
|
|
1083
1213
|
end # of Gem::OperationNotSupportedError
|
|
1084
|
-
|
|
1085
|
-
|
|
1214
|
+
|
|
1215
|
+
class Gem::PathSupport #:nodoc:
|
|
1216
|
+
include ::RubyBreaker::Broken
|
|
1086
1217
|
typesig("home(?*) -> basic_object")
|
|
1087
1218
|
typesig("path(?*) -> basic_object")
|
|
1088
|
-
|
|
1089
1219
|
end # of Gem::PathSupport
|
|
1090
|
-
|
|
1091
|
-
|
|
1220
|
+
|
|
1221
|
+
class Gem::Platform #:nodoc:
|
|
1222
|
+
include ::RubyBreaker::Broken
|
|
1092
1223
|
typesig("==(?*) -> basic_object")
|
|
1093
1224
|
typesig("===(?*) -> basic_object")
|
|
1094
1225
|
typesig("=~(?*) -> basic_object")
|
|
@@ -1105,22 +1236,26 @@ module Gem
|
|
|
1105
1236
|
typesig("to_s(?*) -> basic_object")
|
|
1106
1237
|
typesig("version(?*) -> basic_object")
|
|
1107
1238
|
typesig("version=(?*) -> basic_object")
|
|
1108
|
-
|
|
1109
1239
|
end # of Gem::Platform
|
|
1110
|
-
|
|
1111
|
-
|
|
1240
|
+
|
|
1241
|
+
class Gem::RemoteError #:nodoc:
|
|
1242
|
+
include ::RubyBreaker::Broken
|
|
1112
1243
|
end # of Gem::RemoteError
|
|
1113
|
-
|
|
1114
|
-
|
|
1244
|
+
|
|
1245
|
+
class Gem::RemoteInstallationCancelled #:nodoc:
|
|
1246
|
+
include ::RubyBreaker::Broken
|
|
1115
1247
|
end # of Gem::RemoteInstallationCancelled
|
|
1116
|
-
|
|
1117
|
-
|
|
1248
|
+
|
|
1249
|
+
class Gem::RemoteInstallationSkipped #:nodoc:
|
|
1250
|
+
include ::RubyBreaker::Broken
|
|
1118
1251
|
end # of Gem::RemoteInstallationSkipped
|
|
1119
|
-
|
|
1120
|
-
|
|
1252
|
+
|
|
1253
|
+
class Gem::RemoteSourceException #:nodoc:
|
|
1254
|
+
include ::RubyBreaker::Broken
|
|
1121
1255
|
end # of Gem::RemoteSourceException
|
|
1122
|
-
|
|
1123
|
-
|
|
1256
|
+
|
|
1257
|
+
class Gem::Requirement #:nodoc:
|
|
1258
|
+
include ::RubyBreaker::Broken
|
|
1124
1259
|
typesig("<=>(?*) -> basic_object")
|
|
1125
1260
|
typesig("===(?*) -> basic_object")
|
|
1126
1261
|
typesig("=~(?*) -> basic_object")
|
|
@@ -1137,10 +1272,10 @@ module Gem
|
|
|
1137
1272
|
typesig("specific?(?*) -> basic_object")
|
|
1138
1273
|
typesig("to_s(?*) -> basic_object")
|
|
1139
1274
|
typesig("yaml_initialize(?*) -> basic_object")
|
|
1140
|
-
|
|
1141
1275
|
end # of Gem::Requirement
|
|
1142
|
-
|
|
1143
|
-
|
|
1276
|
+
|
|
1277
|
+
class Gem::SpecFetcher #:nodoc:
|
|
1278
|
+
include ::RubyBreaker::Broken
|
|
1144
1279
|
typesig("cache_dir(?*) -> basic_object")
|
|
1145
1280
|
typesig("dir(?*) -> basic_object")
|
|
1146
1281
|
typesig("fetch(?*) -> basic_object")
|
|
@@ -1154,10 +1289,10 @@ module Gem
|
|
|
1154
1289
|
typesig("prerelease_specs(?*) -> basic_object")
|
|
1155
1290
|
typesig("specs(?*) -> basic_object")
|
|
1156
1291
|
typesig("suggest_gems_from_name(?*) -> basic_object")
|
|
1157
|
-
|
|
1158
1292
|
end # of Gem::SpecFetcher
|
|
1159
|
-
|
|
1160
|
-
|
|
1293
|
+
|
|
1294
|
+
class Gem::Specification #:nodoc:
|
|
1295
|
+
include ::RubyBreaker::Broken
|
|
1161
1296
|
typesig("<=>(?*) -> basic_object")
|
|
1162
1297
|
typesig("==(?*) -> basic_object")
|
|
1163
1298
|
typesig("_deprecated_cache_gem(?*) -> basic_object")
|
|
@@ -1308,19 +1443,20 @@ module Gem
|
|
|
1308
1443
|
typesig("version(?*) -> basic_object")
|
|
1309
1444
|
typesig("version=(?*) -> basic_object")
|
|
1310
1445
|
typesig("yaml_initialize(?*) -> basic_object")
|
|
1311
|
-
|
|
1312
1446
|
end # of Gem::Specification
|
|
1313
|
-
|
|
1314
|
-
|
|
1447
|
+
|
|
1448
|
+
class Gem::SystemExitException #:nodoc:
|
|
1449
|
+
include ::RubyBreaker::Broken
|
|
1315
1450
|
typesig("exit_code(?*) -> basic_object")
|
|
1316
1451
|
typesig("exit_code=(?*) -> basic_object")
|
|
1317
|
-
|
|
1318
1452
|
end # of Gem::SystemExitException
|
|
1319
|
-
|
|
1320
|
-
|
|
1453
|
+
|
|
1454
|
+
class Gem::VerificationError #:nodoc:
|
|
1455
|
+
include ::RubyBreaker::Broken
|
|
1321
1456
|
end # of Gem::VerificationError
|
|
1322
|
-
|
|
1323
|
-
|
|
1457
|
+
|
|
1458
|
+
class Gem::Version #:nodoc:
|
|
1459
|
+
include ::RubyBreaker::Broken
|
|
1324
1460
|
typesig("<=>(?*) -> basic_object")
|
|
1325
1461
|
typesig("bump(?*) -> basic_object")
|
|
1326
1462
|
typesig("eql?(?*) -> basic_object")
|
|
@@ -1337,12 +1473,11 @@ module Gem
|
|
|
1337
1473
|
typesig("to_s(?*) -> basic_object")
|
|
1338
1474
|
typesig("version(?*) -> basic_object")
|
|
1339
1475
|
typesig("yaml_initialize(?*) -> basic_object")
|
|
1340
|
-
|
|
1341
1476
|
end # of Gem::Version
|
|
1342
|
-
|
|
1343
1477
|
end # of Gem
|
|
1344
|
-
|
|
1345
|
-
|
|
1478
|
+
|
|
1479
|
+
class Hash #:nodoc:
|
|
1480
|
+
include ::RubyBreaker::Broken
|
|
1346
1481
|
typesig("==(?*) -> basic_object")
|
|
1347
1482
|
typesig("[](?*) -> basic_object")
|
|
1348
1483
|
typesig("[]=(?*) -> basic_object")
|
|
@@ -1396,10 +1531,10 @@ class Hash
|
|
|
1396
1531
|
typesig("value?(?*) -> basic_object")
|
|
1397
1532
|
typesig("values(?*) -> basic_object")
|
|
1398
1533
|
typesig("values_at(?*) -> basic_object")
|
|
1399
|
-
|
|
1400
1534
|
end # of Hash
|
|
1401
|
-
|
|
1402
|
-
|
|
1535
|
+
|
|
1536
|
+
class IO #:nodoc:
|
|
1537
|
+
include ::RubyBreaker::Broken
|
|
1403
1538
|
typesig("<<(?*) -> basic_object")
|
|
1404
1539
|
typesig("advise(?*) -> basic_object")
|
|
1405
1540
|
typesig("autoclose=(?*) -> basic_object")
|
|
@@ -1470,16 +1605,18 @@ class IO
|
|
|
1470
1605
|
typesig("ungetc(?*) -> basic_object")
|
|
1471
1606
|
typesig("write(?*) -> basic_object")
|
|
1472
1607
|
typesig("write_nonblock(?*) -> basic_object")
|
|
1473
|
-
|
|
1474
1608
|
end # of IO
|
|
1475
|
-
|
|
1476
|
-
|
|
1609
|
+
|
|
1610
|
+
class IOError #:nodoc:
|
|
1611
|
+
include ::RubyBreaker::Broken
|
|
1477
1612
|
end # of IOError
|
|
1478
|
-
|
|
1479
|
-
|
|
1613
|
+
|
|
1614
|
+
class IndexError #:nodoc:
|
|
1615
|
+
include ::RubyBreaker::Broken
|
|
1480
1616
|
end # of IndexError
|
|
1481
|
-
|
|
1482
|
-
|
|
1617
|
+
|
|
1618
|
+
class Integer #:nodoc:
|
|
1619
|
+
include ::RubyBreaker::Broken
|
|
1483
1620
|
typesig("ceil(?*) -> basic_object")
|
|
1484
1621
|
typesig("chr(?*) -> basic_object")
|
|
1485
1622
|
typesig("denominator(?*) -> basic_object")
|
|
@@ -1504,13 +1641,14 @@ class Integer
|
|
|
1504
1641
|
typesig("to_r(?*) -> basic_object")
|
|
1505
1642
|
typesig("truncate(?*) -> basic_object")
|
|
1506
1643
|
typesig("upto(?*) -> basic_object")
|
|
1507
|
-
|
|
1508
1644
|
end # of Integer
|
|
1509
|
-
|
|
1510
|
-
|
|
1645
|
+
|
|
1646
|
+
class Interrupt #:nodoc:
|
|
1647
|
+
include ::RubyBreaker::Broken
|
|
1511
1648
|
end # of Interrupt
|
|
1512
|
-
|
|
1513
|
-
|
|
1649
|
+
|
|
1650
|
+
module Kernel #:nodoc:
|
|
1651
|
+
include ::RubyBreaker::Broken
|
|
1514
1652
|
typesig("!~(?*) -> basic_object")
|
|
1515
1653
|
typesig("<=>(?*) -> basic_object")
|
|
1516
1654
|
typesig("===(?*) -> basic_object")
|
|
@@ -1559,25 +1697,28 @@ module Kernel
|
|
|
1559
1697
|
typesig("untaint(?*) -> basic_object")
|
|
1560
1698
|
typesig("untrust(?*) -> basic_object")
|
|
1561
1699
|
typesig("untrusted?(?*) -> basic_object")
|
|
1562
|
-
|
|
1563
1700
|
end # of Kernel
|
|
1564
|
-
|
|
1565
|
-
|
|
1701
|
+
|
|
1702
|
+
class KeyError #:nodoc:
|
|
1703
|
+
include ::RubyBreaker::Broken
|
|
1566
1704
|
end # of KeyError
|
|
1567
|
-
|
|
1568
|
-
|
|
1705
|
+
|
|
1706
|
+
class LoadError #:nodoc:
|
|
1707
|
+
include ::RubyBreaker::Broken
|
|
1569
1708
|
end # of LoadError
|
|
1570
|
-
|
|
1571
|
-
|
|
1709
|
+
|
|
1710
|
+
class LocalJumpError #:nodoc:
|
|
1711
|
+
include ::RubyBreaker::Broken
|
|
1572
1712
|
typesig("exit_value(?*) -> basic_object")
|
|
1573
1713
|
typesig("reason(?*) -> basic_object")
|
|
1574
|
-
|
|
1575
1714
|
end # of LocalJumpError
|
|
1576
|
-
|
|
1577
|
-
|
|
1715
|
+
|
|
1716
|
+
module Marshal #:nodoc:
|
|
1717
|
+
include ::RubyBreaker::Broken
|
|
1578
1718
|
end # of Marshal
|
|
1579
|
-
|
|
1580
|
-
|
|
1719
|
+
|
|
1720
|
+
class MatchData #:nodoc:
|
|
1721
|
+
include ::RubyBreaker::Broken
|
|
1581
1722
|
typesig("==(?*) -> basic_object")
|
|
1582
1723
|
typesig("[](?*) -> basic_object")
|
|
1583
1724
|
typesig("begin(?*) -> basic_object")
|
|
@@ -1597,17 +1738,18 @@ class MatchData
|
|
|
1597
1738
|
typesig("to_a(?*) -> basic_object")
|
|
1598
1739
|
typesig("to_s(?*) -> basic_object")
|
|
1599
1740
|
typesig("values_at(?*) -> basic_object")
|
|
1600
|
-
|
|
1601
1741
|
end # of MatchData
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
include RubyBreaker::Broken;
|
|
1606
|
-
end # of Math::DomainError
|
|
1742
|
+
|
|
1743
|
+
module Math #:nodoc:
|
|
1744
|
+
include ::RubyBreaker::Broken
|
|
1607
1745
|
|
|
1746
|
+
class Math::DomainError #:nodoc:
|
|
1747
|
+
include ::RubyBreaker::Broken
|
|
1748
|
+
end # of Math::DomainError
|
|
1608
1749
|
end # of Math
|
|
1609
|
-
|
|
1610
|
-
|
|
1750
|
+
|
|
1751
|
+
class Method #:nodoc:
|
|
1752
|
+
include ::RubyBreaker::Broken
|
|
1611
1753
|
typesig("==(?*) -> basic_object")
|
|
1612
1754
|
typesig("[](?*) -> basic_object")
|
|
1613
1755
|
typesig("arity(?*) -> basic_object")
|
|
@@ -1624,26 +1766,26 @@ class Method
|
|
|
1624
1766
|
typesig("to_proc(?*) -> basic_object")
|
|
1625
1767
|
typesig("to_s(?*) -> basic_object")
|
|
1626
1768
|
typesig("unbind(?*) -> basic_object")
|
|
1627
|
-
|
|
1628
1769
|
end # of Method
|
|
1629
|
-
|
|
1630
|
-
|
|
1770
|
+
|
|
1771
|
+
class Mutex #:nodoc:
|
|
1772
|
+
include ::RubyBreaker::Broken
|
|
1631
1773
|
typesig("lock(?*) -> basic_object")
|
|
1632
1774
|
typesig("locked?(?*) -> basic_object")
|
|
1633
1775
|
typesig("sleep(?*) -> basic_object")
|
|
1634
1776
|
typesig("synchronize(?*) -> basic_object")
|
|
1635
1777
|
typesig("try_lock(?*) -> basic_object")
|
|
1636
1778
|
typesig("unlock(?*) -> basic_object")
|
|
1637
|
-
|
|
1638
1779
|
end # of Mutex
|
|
1639
|
-
|
|
1640
|
-
|
|
1780
|
+
|
|
1781
|
+
class NameError #:nodoc:
|
|
1782
|
+
include ::RubyBreaker::Broken
|
|
1641
1783
|
typesig("name(?*) -> basic_object")
|
|
1642
1784
|
typesig("to_s(?*) -> basic_object")
|
|
1643
|
-
|
|
1644
1785
|
end # of NameError
|
|
1645
|
-
|
|
1646
|
-
|
|
1786
|
+
|
|
1787
|
+
class NilClass #:nodoc:
|
|
1788
|
+
include ::RubyBreaker::Broken
|
|
1647
1789
|
typesig("&(?*) -> basic_object")
|
|
1648
1790
|
typesig("^(?*) -> basic_object")
|
|
1649
1791
|
typesig("inspect(?*) -> basic_object")
|
|
@@ -1656,19 +1798,23 @@ class NilClass
|
|
|
1656
1798
|
typesig("to_r(?*) -> basic_object")
|
|
1657
1799
|
typesig("to_s(?*) -> basic_object")
|
|
1658
1800
|
typesig("|(?*) -> basic_object")
|
|
1659
|
-
|
|
1660
1801
|
end # of NilClass
|
|
1661
|
-
|
|
1662
|
-
|
|
1802
|
+
|
|
1803
|
+
class NoMemoryError #:nodoc:
|
|
1804
|
+
include ::RubyBreaker::Broken
|
|
1663
1805
|
end # of NoMemoryError
|
|
1664
|
-
|
|
1665
|
-
|
|
1806
|
+
|
|
1807
|
+
class NoMethodError #:nodoc:
|
|
1808
|
+
include ::RubyBreaker::Broken
|
|
1809
|
+
typesig("args(?*) -> basic_object")
|
|
1666
1810
|
end # of NoMethodError
|
|
1667
|
-
|
|
1668
|
-
|
|
1811
|
+
|
|
1812
|
+
class NotImplementedError #:nodoc:
|
|
1813
|
+
include ::RubyBreaker::Broken
|
|
1669
1814
|
end # of NotImplementedError
|
|
1670
|
-
|
|
1671
|
-
|
|
1815
|
+
|
|
1816
|
+
class Numeric #:nodoc:
|
|
1817
|
+
include ::RubyBreaker::Broken
|
|
1672
1818
|
typesig("%(?*) -> basic_object")
|
|
1673
1819
|
typesig("+@(?*) -> basic_object")
|
|
1674
1820
|
typesig("-@(?*) -> basic_object")
|
|
@@ -1710,13 +1856,14 @@ class Numeric
|
|
|
1710
1856
|
typesig("to_int(?*) -> basic_object")
|
|
1711
1857
|
typesig("truncate(?*) -> basic_object")
|
|
1712
1858
|
typesig("zero?(?*) -> basic_object")
|
|
1713
|
-
|
|
1714
1859
|
end # of Numeric
|
|
1715
|
-
|
|
1716
|
-
|
|
1860
|
+
|
|
1861
|
+
module ObjectSpace #:nodoc:
|
|
1862
|
+
include ::RubyBreaker::Broken
|
|
1717
1863
|
end # of ObjectSpace
|
|
1718
|
-
|
|
1719
|
-
|
|
1864
|
+
|
|
1865
|
+
class PrettyPrint #:nodoc:
|
|
1866
|
+
include ::RubyBreaker::Broken
|
|
1720
1867
|
typesig("break_outmost_groups(?*) -> basic_object")
|
|
1721
1868
|
typesig("breakable(?*) -> basic_object")
|
|
1722
1869
|
typesig("current_group(?*) -> basic_object")
|
|
@@ -1733,51 +1880,51 @@ class PrettyPrint
|
|
|
1733
1880
|
typesig("newline(?*) -> basic_object")
|
|
1734
1881
|
typesig("output(?*) -> basic_object")
|
|
1735
1882
|
typesig("text(?*) -> basic_object")
|
|
1736
|
-
|
|
1737
|
-
|
|
1883
|
+
|
|
1884
|
+
class PrettyPrint::Breakable #:nodoc:
|
|
1885
|
+
include ::RubyBreaker::Broken
|
|
1738
1886
|
typesig("indent(?*) -> basic_object")
|
|
1739
1887
|
typesig("obj(?*) -> basic_object")
|
|
1740
1888
|
typesig("output(?*) -> basic_object")
|
|
1741
1889
|
typesig("width(?*) -> basic_object")
|
|
1742
|
-
|
|
1743
1890
|
end # of PrettyPrint::Breakable
|
|
1744
|
-
|
|
1745
|
-
|
|
1891
|
+
|
|
1892
|
+
class PrettyPrint::Group #:nodoc:
|
|
1893
|
+
include ::RubyBreaker::Broken
|
|
1746
1894
|
typesig("break(?*) -> basic_object")
|
|
1747
1895
|
typesig("break?(?*) -> basic_object")
|
|
1748
1896
|
typesig("breakables(?*) -> basic_object")
|
|
1749
1897
|
typesig("depth(?*) -> basic_object")
|
|
1750
1898
|
typesig("first?(?*) -> basic_object")
|
|
1751
|
-
|
|
1752
1899
|
end # of PrettyPrint::Group
|
|
1753
|
-
|
|
1754
|
-
|
|
1900
|
+
|
|
1901
|
+
class PrettyPrint::GroupQueue #:nodoc:
|
|
1902
|
+
include ::RubyBreaker::Broken
|
|
1755
1903
|
typesig("delete(?*) -> basic_object")
|
|
1756
1904
|
typesig("deq(?*) -> basic_object")
|
|
1757
1905
|
typesig("enq(?*) -> basic_object")
|
|
1758
|
-
|
|
1759
1906
|
end # of PrettyPrint::GroupQueue
|
|
1760
|
-
|
|
1761
|
-
|
|
1907
|
+
|
|
1908
|
+
class PrettyPrint::SingleLine #:nodoc:
|
|
1909
|
+
include ::RubyBreaker::Broken
|
|
1762
1910
|
typesig("breakable(?*) -> basic_object")
|
|
1763
1911
|
typesig("first?(?*) -> basic_object")
|
|
1764
1912
|
typesig("flush(?*) -> basic_object")
|
|
1765
1913
|
typesig("group(?*) -> basic_object")
|
|
1766
1914
|
typesig("nest(?*) -> basic_object")
|
|
1767
1915
|
typesig("text(?*) -> basic_object")
|
|
1768
|
-
|
|
1769
1916
|
end # of PrettyPrint::SingleLine
|
|
1770
|
-
|
|
1771
|
-
|
|
1917
|
+
|
|
1918
|
+
class PrettyPrint::Text #:nodoc:
|
|
1919
|
+
include ::RubyBreaker::Broken
|
|
1772
1920
|
typesig("add(?*) -> basic_object")
|
|
1773
1921
|
typesig("output(?*) -> basic_object")
|
|
1774
1922
|
typesig("width(?*) -> basic_object")
|
|
1775
|
-
|
|
1776
1923
|
end # of PrettyPrint::Text
|
|
1777
|
-
|
|
1778
1924
|
end # of PrettyPrint
|
|
1779
|
-
|
|
1780
|
-
|
|
1925
|
+
|
|
1926
|
+
class Proc #:nodoc:
|
|
1927
|
+
include ::RubyBreaker::Broken
|
|
1781
1928
|
typesig("==(?*) -> basic_object")
|
|
1782
1929
|
typesig("===(?*) -> basic_object")
|
|
1783
1930
|
typesig("[](?*) -> basic_object")
|
|
@@ -1795,15 +1942,17 @@ class Proc
|
|
|
1795
1942
|
typesig("to_proc(?*) -> basic_object")
|
|
1796
1943
|
typesig("to_s(?*) -> basic_object")
|
|
1797
1944
|
typesig("yield(?*) -> basic_object")
|
|
1798
|
-
|
|
1799
1945
|
end # of Proc
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1946
|
+
|
|
1947
|
+
module Process #:nodoc:
|
|
1948
|
+
include ::RubyBreaker::Broken
|
|
1949
|
+
|
|
1950
|
+
module Process::GID #:nodoc:
|
|
1951
|
+
include ::RubyBreaker::Broken
|
|
1804
1952
|
end # of Process::GID
|
|
1805
|
-
|
|
1806
|
-
|
|
1953
|
+
|
|
1954
|
+
class Process::Status #:nodoc:
|
|
1955
|
+
include ::RubyBreaker::Broken
|
|
1807
1956
|
typesig("&(?*) -> basic_object")
|
|
1808
1957
|
typesig("==(?*) -> basic_object")
|
|
1809
1958
|
typesig(">>(?*) -> basic_object")
|
|
@@ -1819,28 +1968,29 @@ module Process
|
|
|
1819
1968
|
typesig("termsig(?*) -> basic_object")
|
|
1820
1969
|
typesig("to_i(?*) -> basic_object")
|
|
1821
1970
|
typesig("to_s(?*) -> basic_object")
|
|
1822
|
-
|
|
1823
1971
|
end # of Process::Status
|
|
1824
|
-
|
|
1825
|
-
|
|
1972
|
+
|
|
1973
|
+
module Process::Sys #:nodoc:
|
|
1974
|
+
include ::RubyBreaker::Broken
|
|
1826
1975
|
end # of Process::Sys
|
|
1827
|
-
module Process::UID
|
|
1828
|
-
include RubyBreaker::Broken;
|
|
1829
|
-
end # of Process::UID
|
|
1830
1976
|
|
|
1977
|
+
module Process::UID #:nodoc:
|
|
1978
|
+
include ::RubyBreaker::Broken
|
|
1979
|
+
end # of Process::UID
|
|
1831
1980
|
end # of Process
|
|
1832
|
-
|
|
1833
|
-
|
|
1981
|
+
|
|
1982
|
+
class Random #:nodoc:
|
|
1983
|
+
include ::RubyBreaker::Broken
|
|
1834
1984
|
typesig("==(?*) -> basic_object")
|
|
1835
1985
|
typesig("bytes(?*) -> basic_object")
|
|
1836
1986
|
typesig("marshal_dump(?*) -> basic_object")
|
|
1837
1987
|
typesig("marshal_load(?*) -> basic_object")
|
|
1838
1988
|
typesig("rand(?*) -> basic_object")
|
|
1839
1989
|
typesig("seed(?*) -> basic_object")
|
|
1840
|
-
|
|
1841
1990
|
end # of Random
|
|
1842
|
-
|
|
1843
|
-
|
|
1991
|
+
|
|
1992
|
+
class Range #:nodoc:
|
|
1993
|
+
include ::RubyBreaker::Broken
|
|
1844
1994
|
typesig("==(?*) -> basic_object")
|
|
1845
1995
|
typesig("===(?*) -> basic_object")
|
|
1846
1996
|
typesig("begin(?*) -> basic_object")
|
|
@@ -1859,13 +2009,14 @@ class Range
|
|
|
1859
2009
|
typesig("min(?*) -> basic_object")
|
|
1860
2010
|
typesig("step(?*) -> basic_object")
|
|
1861
2011
|
typesig("to_s(?*) -> basic_object")
|
|
1862
|
-
|
|
1863
2012
|
end # of Range
|
|
1864
|
-
|
|
1865
|
-
|
|
2013
|
+
|
|
2014
|
+
class RangeError #:nodoc:
|
|
2015
|
+
include ::RubyBreaker::Broken
|
|
1866
2016
|
end # of RangeError
|
|
1867
|
-
|
|
1868
|
-
|
|
2017
|
+
|
|
2018
|
+
class Rational #:nodoc:
|
|
2019
|
+
include ::RubyBreaker::Broken
|
|
1869
2020
|
typesig("*(?*) -> basic_object")
|
|
1870
2021
|
typesig("**(?*) -> basic_object")
|
|
1871
2022
|
typesig("+(?*) -> basic_object")
|
|
@@ -1891,13 +2042,14 @@ class Rational
|
|
|
1891
2042
|
typesig("to_r(?*) -> basic_object")
|
|
1892
2043
|
typesig("to_s(?*) -> basic_object")
|
|
1893
2044
|
typesig("truncate(?*) -> basic_object")
|
|
1894
|
-
|
|
1895
2045
|
end # of Rational
|
|
1896
|
-
|
|
1897
|
-
|
|
2046
|
+
|
|
2047
|
+
module RbConfig #:nodoc:
|
|
2048
|
+
include ::RubyBreaker::Broken
|
|
1898
2049
|
end # of RbConfig
|
|
1899
|
-
|
|
1900
|
-
|
|
2050
|
+
|
|
2051
|
+
class Regexp #:nodoc:
|
|
2052
|
+
include ::RubyBreaker::Broken
|
|
1901
2053
|
typesig("==(?*) -> basic_object")
|
|
1902
2054
|
typesig("===(?*) -> basic_object")
|
|
1903
2055
|
typesig("=~(?*) -> basic_object")
|
|
@@ -1914,53 +2066,62 @@ class Regexp
|
|
|
1914
2066
|
typesig("source(?*) -> basic_object")
|
|
1915
2067
|
typesig("to_s(?*) -> basic_object")
|
|
1916
2068
|
typesig("~(?*) -> basic_object")
|
|
1917
|
-
|
|
1918
2069
|
end # of Regexp
|
|
1919
|
-
|
|
1920
|
-
|
|
2070
|
+
|
|
2071
|
+
class RegexpError #:nodoc:
|
|
2072
|
+
include ::RubyBreaker::Broken
|
|
1921
2073
|
end # of RegexpError
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
2074
|
+
|
|
2075
|
+
class RubyVM #:nodoc:
|
|
2076
|
+
include ::RubyBreaker::Broken
|
|
2077
|
+
|
|
2078
|
+
class RubyVM::Env #:nodoc:
|
|
2079
|
+
include ::RubyBreaker::Broken
|
|
1926
2080
|
end # of RubyVM::Env
|
|
1927
|
-
|
|
1928
|
-
|
|
2081
|
+
|
|
2082
|
+
class RubyVM::InstructionSequence #:nodoc:
|
|
2083
|
+
include ::RubyBreaker::Broken
|
|
1929
2084
|
typesig("disasm(?*) -> basic_object")
|
|
1930
2085
|
typesig("disassemble(?*) -> basic_object")
|
|
1931
2086
|
typesig("eval(?*) -> basic_object")
|
|
1932
2087
|
typesig("inspect(?*) -> basic_object")
|
|
1933
2088
|
typesig("to_a(?*) -> basic_object")
|
|
1934
|
-
|
|
1935
2089
|
end # of RubyVM::InstructionSequence
|
|
1936
|
-
|
|
1937
2090
|
end # of RubyVM
|
|
1938
|
-
|
|
1939
|
-
|
|
2091
|
+
|
|
2092
|
+
class RuntimeError #:nodoc:
|
|
2093
|
+
include ::RubyBreaker::Broken
|
|
1940
2094
|
end # of RuntimeError
|
|
1941
|
-
|
|
1942
|
-
|
|
2095
|
+
|
|
2096
|
+
class ScriptError #:nodoc:
|
|
2097
|
+
include ::RubyBreaker::Broken
|
|
1943
2098
|
end # of ScriptError
|
|
1944
|
-
|
|
1945
|
-
|
|
2099
|
+
|
|
2100
|
+
class SecurityError #:nodoc:
|
|
2101
|
+
include ::RubyBreaker::Broken
|
|
1946
2102
|
end # of SecurityError
|
|
1947
|
-
|
|
1948
|
-
|
|
2103
|
+
|
|
2104
|
+
module Signal #:nodoc:
|
|
2105
|
+
include ::RubyBreaker::Broken
|
|
1949
2106
|
end # of Signal
|
|
1950
|
-
|
|
1951
|
-
|
|
2107
|
+
|
|
2108
|
+
class SignalException #:nodoc:
|
|
2109
|
+
include ::RubyBreaker::Broken
|
|
1952
2110
|
typesig("signm(?*) -> basic_object")
|
|
1953
2111
|
typesig("signo(?*) -> basic_object")
|
|
1954
|
-
|
|
1955
2112
|
end # of SignalException
|
|
1956
|
-
|
|
1957
|
-
|
|
2113
|
+
|
|
2114
|
+
class StandardError #:nodoc:
|
|
2115
|
+
include ::RubyBreaker::Broken
|
|
1958
2116
|
end # of StandardError
|
|
1959
|
-
|
|
1960
|
-
|
|
2117
|
+
|
|
2118
|
+
class StopIteration #:nodoc:
|
|
2119
|
+
include ::RubyBreaker::Broken
|
|
2120
|
+
typesig("result(?*) -> basic_object")
|
|
1961
2121
|
end # of StopIteration
|
|
1962
|
-
|
|
1963
|
-
|
|
2122
|
+
|
|
2123
|
+
class String #:nodoc:
|
|
2124
|
+
include ::RubyBreaker::Broken
|
|
1964
2125
|
typesig("%(?*) -> basic_object")
|
|
1965
2126
|
typesig("*(?*) -> basic_object")
|
|
1966
2127
|
typesig("+(?*) -> basic_object")
|
|
@@ -2070,10 +2231,10 @@ class String
|
|
|
2070
2231
|
typesig("upcase!(?*) -> basic_object")
|
|
2071
2232
|
typesig("upto(?*) -> basic_object")
|
|
2072
2233
|
typesig("valid_encoding?(?*) -> basic_object")
|
|
2073
|
-
|
|
2074
2234
|
end # of String
|
|
2075
|
-
|
|
2076
|
-
|
|
2235
|
+
|
|
2236
|
+
class Struct #:nodoc:
|
|
2237
|
+
include ::RubyBreaker::Broken
|
|
2077
2238
|
typesig("==(?*) -> basic_object")
|
|
2078
2239
|
typesig("[](?*) -> basic_object")
|
|
2079
2240
|
typesig("[]=(?*) -> basic_object")
|
|
@@ -2090,8 +2251,9 @@ class Struct
|
|
|
2090
2251
|
typesig("to_s(?*) -> basic_object")
|
|
2091
2252
|
typesig("values(?*) -> basic_object")
|
|
2092
2253
|
typesig("values_at(?*) -> basic_object")
|
|
2093
|
-
|
|
2094
|
-
|
|
2254
|
+
|
|
2255
|
+
class Struct::Group #:nodoc:
|
|
2256
|
+
include ::RubyBreaker::Broken
|
|
2095
2257
|
typesig("gid(?*) -> basic_object")
|
|
2096
2258
|
typesig("gid=(?*) -> basic_object")
|
|
2097
2259
|
typesig("mem(?*) -> basic_object")
|
|
@@ -2100,8 +2262,9 @@ class Struct
|
|
|
2100
2262
|
typesig("name=(?*) -> basic_object")
|
|
2101
2263
|
typesig("passwd(?*) -> basic_object")
|
|
2102
2264
|
typesig("passwd=(?*) -> basic_object")
|
|
2103
|
-
|
|
2104
|
-
|
|
2265
|
+
|
|
2266
|
+
class Struct::Passwd #:nodoc:
|
|
2267
|
+
include ::RubyBreaker::Broken
|
|
2105
2268
|
typesig("change(?*) -> basic_object")
|
|
2106
2269
|
typesig("change=(?*) -> basic_object")
|
|
2107
2270
|
typesig("dir(?*) -> basic_object")
|
|
@@ -2122,8 +2285,9 @@ class Struct
|
|
|
2122
2285
|
typesig("uclass=(?*) -> basic_object")
|
|
2123
2286
|
typesig("uid(?*) -> basic_object")
|
|
2124
2287
|
typesig("uid=(?*) -> basic_object")
|
|
2125
|
-
|
|
2126
|
-
|
|
2288
|
+
|
|
2289
|
+
class Struct::Tms #:nodoc:
|
|
2290
|
+
include ::RubyBreaker::Broken
|
|
2127
2291
|
typesig("cstime(?*) -> basic_object")
|
|
2128
2292
|
typesig("cstime=(?*) -> basic_object")
|
|
2129
2293
|
typesig("cutime(?*) -> basic_object")
|
|
@@ -2132,16 +2296,13 @@ class Struct
|
|
|
2132
2296
|
typesig("stime=(?*) -> basic_object")
|
|
2133
2297
|
typesig("utime(?*) -> basic_object")
|
|
2134
2298
|
typesig("utime=(?*) -> basic_object")
|
|
2135
|
-
|
|
2136
2299
|
end # of Struct::Tms
|
|
2137
|
-
|
|
2138
2300
|
end # of Struct::Passwd
|
|
2139
|
-
|
|
2140
2301
|
end # of Struct::Group
|
|
2141
|
-
|
|
2142
2302
|
end # of Struct
|
|
2143
|
-
|
|
2144
|
-
|
|
2303
|
+
|
|
2304
|
+
class Symbol #:nodoc:
|
|
2305
|
+
include ::RubyBreaker::Broken
|
|
2145
2306
|
typesig("<=>(?*) -> basic_object")
|
|
2146
2307
|
typesig("==(?*) -> basic_object")
|
|
2147
2308
|
typesig("===(?*) -> basic_object")
|
|
@@ -2166,25 +2327,29 @@ class Symbol
|
|
|
2166
2327
|
typesig("to_s(?*) -> basic_object")
|
|
2167
2328
|
typesig("to_sym(?*) -> basic_object")
|
|
2168
2329
|
typesig("upcase(?*) -> basic_object")
|
|
2169
|
-
|
|
2170
2330
|
end # of Symbol
|
|
2171
|
-
|
|
2172
|
-
|
|
2331
|
+
|
|
2332
|
+
class SyntaxError #:nodoc:
|
|
2333
|
+
include ::RubyBreaker::Broken
|
|
2173
2334
|
end # of SyntaxError
|
|
2174
|
-
|
|
2175
|
-
|
|
2335
|
+
|
|
2336
|
+
class SystemCallError #:nodoc:
|
|
2337
|
+
include ::RubyBreaker::Broken
|
|
2338
|
+
typesig("errno(?*) -> basic_object")
|
|
2176
2339
|
end # of SystemCallError
|
|
2177
|
-
|
|
2178
|
-
|
|
2340
|
+
|
|
2341
|
+
class SystemExit #:nodoc:
|
|
2342
|
+
include ::RubyBreaker::Broken
|
|
2179
2343
|
typesig("status(?*) -> basic_object")
|
|
2180
2344
|
typesig("success?(?*) -> basic_object")
|
|
2181
|
-
|
|
2182
2345
|
end # of SystemExit
|
|
2183
|
-
|
|
2184
|
-
|
|
2346
|
+
|
|
2347
|
+
class SystemStackError #:nodoc:
|
|
2348
|
+
include ::RubyBreaker::Broken
|
|
2185
2349
|
end # of SystemStackError
|
|
2186
|
-
|
|
2187
|
-
|
|
2350
|
+
|
|
2351
|
+
class Thread #:nodoc:
|
|
2352
|
+
include ::RubyBreaker::Broken
|
|
2188
2353
|
typesig("[](?*) -> basic_object")
|
|
2189
2354
|
typesig("[]=(?*) -> basic_object")
|
|
2190
2355
|
typesig("abort_on_exception(?*) -> basic_object")
|
|
@@ -2210,21 +2375,22 @@ class Thread
|
|
|
2210
2375
|
typesig("terminate(?*) -> basic_object")
|
|
2211
2376
|
typesig("value(?*) -> basic_object")
|
|
2212
2377
|
typesig("wakeup(?*) -> basic_object")
|
|
2213
|
-
|
|
2214
2378
|
end # of Thread
|
|
2215
|
-
|
|
2216
|
-
|
|
2379
|
+
|
|
2380
|
+
class ThreadError #:nodoc:
|
|
2381
|
+
include ::RubyBreaker::Broken
|
|
2217
2382
|
end # of ThreadError
|
|
2218
|
-
|
|
2219
|
-
|
|
2383
|
+
|
|
2384
|
+
class ThreadGroup #:nodoc:
|
|
2385
|
+
include ::RubyBreaker::Broken
|
|
2220
2386
|
typesig("add(?*) -> basic_object")
|
|
2221
2387
|
typesig("enclose(?*) -> basic_object")
|
|
2222
2388
|
typesig("enclosed?(?*) -> basic_object")
|
|
2223
2389
|
typesig("list(?*) -> basic_object")
|
|
2224
|
-
|
|
2225
2390
|
end # of ThreadGroup
|
|
2226
|
-
|
|
2227
|
-
|
|
2391
|
+
|
|
2392
|
+
class Time #:nodoc:
|
|
2393
|
+
include ::RubyBreaker::Broken
|
|
2228
2394
|
typesig("+(?*) -> basic_object")
|
|
2229
2395
|
typesig("-(?*) -> basic_object")
|
|
2230
2396
|
typesig("<=>(?*) -> basic_object")
|
|
@@ -2282,21 +2448,22 @@ class Time
|
|
|
2282
2448
|
typesig("yday(?*) -> basic_object")
|
|
2283
2449
|
typesig("year(?*) -> basic_object")
|
|
2284
2450
|
typesig("zone(?*) -> basic_object")
|
|
2285
|
-
|
|
2286
2451
|
end # of Time
|
|
2287
|
-
|
|
2288
|
-
|
|
2452
|
+
|
|
2453
|
+
class TrueClass #:nodoc:
|
|
2454
|
+
include ::RubyBreaker::Broken
|
|
2289
2455
|
typesig("&(?*) -> basic_object")
|
|
2290
2456
|
typesig("^(?*) -> basic_object")
|
|
2291
2457
|
typesig("to_s(?*) -> basic_object")
|
|
2292
2458
|
typesig("|(?*) -> basic_object")
|
|
2293
|
-
|
|
2294
2459
|
end # of TrueClass
|
|
2295
|
-
|
|
2296
|
-
|
|
2460
|
+
|
|
2461
|
+
class TypeError #:nodoc:
|
|
2462
|
+
include ::RubyBreaker::Broken
|
|
2297
2463
|
end # of TypeError
|
|
2298
|
-
|
|
2299
|
-
|
|
2464
|
+
|
|
2465
|
+
class UnboundMethod #:nodoc:
|
|
2466
|
+
include ::RubyBreaker::Broken
|
|
2300
2467
|
typesig("==(?*) -> basic_object")
|
|
2301
2468
|
typesig("arity(?*) -> basic_object")
|
|
2302
2469
|
typesig("bind(?*) -> basic_object")
|
|
@@ -2309,8 +2476,8 @@ class UnboundMethod
|
|
|
2309
2476
|
typesig("parameters(?*) -> basic_object")
|
|
2310
2477
|
typesig("source_location(?*) -> basic_object")
|
|
2311
2478
|
typesig("to_s(?*) -> basic_object")
|
|
2312
|
-
|
|
2313
2479
|
end # of UnboundMethod
|
|
2314
|
-
|
|
2315
|
-
|
|
2480
|
+
|
|
2481
|
+
class ZeroDivisionError #:nodoc:
|
|
2482
|
+
include ::RubyBreaker::Broken
|
|
2316
2483
|
end # of ZeroDivisionError
|