rbs 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (132) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/ruby.yml +28 -0
  3. data/.gitignore +12 -0
  4. data/.rubocop.yml +15 -0
  5. data/BSDL +22 -0
  6. data/CHANGELOG.md +9 -0
  7. data/COPYING +56 -0
  8. data/Gemfile +6 -0
  9. data/README.md +93 -0
  10. data/Rakefile +142 -0
  11. data/bin/annotate-with-rdoc +157 -0
  12. data/bin/console +14 -0
  13. data/bin/query-rdoc +103 -0
  14. data/bin/setup +10 -0
  15. data/bin/sort +89 -0
  16. data/bin/test_runner.rb +16 -0
  17. data/docs/CONTRIBUTING.md +97 -0
  18. data/docs/sigs.md +148 -0
  19. data/docs/stdlib.md +152 -0
  20. data/docs/syntax.md +528 -0
  21. data/exe/rbs +7 -0
  22. data/lib/rbs.rb +64 -0
  23. data/lib/rbs/ast/annotation.rb +27 -0
  24. data/lib/rbs/ast/comment.rb +27 -0
  25. data/lib/rbs/ast/declarations.rb +395 -0
  26. data/lib/rbs/ast/members.rb +362 -0
  27. data/lib/rbs/buffer.rb +50 -0
  28. data/lib/rbs/builtin_names.rb +55 -0
  29. data/lib/rbs/cli.rb +558 -0
  30. data/lib/rbs/constant.rb +26 -0
  31. data/lib/rbs/constant_table.rb +150 -0
  32. data/lib/rbs/definition.rb +170 -0
  33. data/lib/rbs/definition_builder.rb +919 -0
  34. data/lib/rbs/environment.rb +281 -0
  35. data/lib/rbs/environment_loader.rb +136 -0
  36. data/lib/rbs/environment_walker.rb +124 -0
  37. data/lib/rbs/errors.rb +187 -0
  38. data/lib/rbs/location.rb +102 -0
  39. data/lib/rbs/method_type.rb +123 -0
  40. data/lib/rbs/namespace.rb +91 -0
  41. data/lib/rbs/parser.y +1344 -0
  42. data/lib/rbs/prototype/rb.rb +553 -0
  43. data/lib/rbs/prototype/rbi.rb +587 -0
  44. data/lib/rbs/prototype/runtime.rb +381 -0
  45. data/lib/rbs/substitution.rb +46 -0
  46. data/lib/rbs/test.rb +26 -0
  47. data/lib/rbs/test/errors.rb +61 -0
  48. data/lib/rbs/test/hook.rb +294 -0
  49. data/lib/rbs/test/setup.rb +58 -0
  50. data/lib/rbs/test/spy.rb +325 -0
  51. data/lib/rbs/test/test_helper.rb +183 -0
  52. data/lib/rbs/test/type_check.rb +254 -0
  53. data/lib/rbs/type_name.rb +70 -0
  54. data/lib/rbs/types.rb +936 -0
  55. data/lib/rbs/variance_calculator.rb +138 -0
  56. data/lib/rbs/vendorer.rb +47 -0
  57. data/lib/rbs/version.rb +3 -0
  58. data/lib/rbs/writer.rb +269 -0
  59. data/lib/ruby/signature.rb +7 -0
  60. data/rbs.gemspec +46 -0
  61. data/stdlib/abbrev/abbrev.rbs +60 -0
  62. data/stdlib/base64/base64.rbs +71 -0
  63. data/stdlib/benchmark/benchmark.rbs +372 -0
  64. data/stdlib/builtin/array.rbs +1997 -0
  65. data/stdlib/builtin/basic_object.rbs +280 -0
  66. data/stdlib/builtin/binding.rbs +177 -0
  67. data/stdlib/builtin/builtin.rbs +45 -0
  68. data/stdlib/builtin/class.rbs +145 -0
  69. data/stdlib/builtin/comparable.rbs +116 -0
  70. data/stdlib/builtin/complex.rbs +400 -0
  71. data/stdlib/builtin/constants.rbs +37 -0
  72. data/stdlib/builtin/data.rbs +5 -0
  73. data/stdlib/builtin/deprecated.rbs +2 -0
  74. data/stdlib/builtin/dir.rbs +413 -0
  75. data/stdlib/builtin/encoding.rbs +607 -0
  76. data/stdlib/builtin/enumerable.rbs +404 -0
  77. data/stdlib/builtin/enumerator.rbs +260 -0
  78. data/stdlib/builtin/errno.rbs +781 -0
  79. data/stdlib/builtin/errors.rbs +582 -0
  80. data/stdlib/builtin/exception.rbs +194 -0
  81. data/stdlib/builtin/false_class.rbs +40 -0
  82. data/stdlib/builtin/fiber.rbs +68 -0
  83. data/stdlib/builtin/fiber_error.rbs +12 -0
  84. data/stdlib/builtin/file.rbs +1076 -0
  85. data/stdlib/builtin/file_test.rbs +59 -0
  86. data/stdlib/builtin/float.rbs +696 -0
  87. data/stdlib/builtin/gc.rbs +243 -0
  88. data/stdlib/builtin/hash.rbs +1029 -0
  89. data/stdlib/builtin/integer.rbs +707 -0
  90. data/stdlib/builtin/io.rbs +683 -0
  91. data/stdlib/builtin/kernel.rbs +576 -0
  92. data/stdlib/builtin/marshal.rbs +161 -0
  93. data/stdlib/builtin/match_data.rbs +271 -0
  94. data/stdlib/builtin/math.rbs +369 -0
  95. data/stdlib/builtin/method.rbs +185 -0
  96. data/stdlib/builtin/module.rbs +1104 -0
  97. data/stdlib/builtin/nil_class.rbs +82 -0
  98. data/stdlib/builtin/numeric.rbs +409 -0
  99. data/stdlib/builtin/object.rbs +824 -0
  100. data/stdlib/builtin/proc.rbs +429 -0
  101. data/stdlib/builtin/process.rbs +1227 -0
  102. data/stdlib/builtin/random.rbs +267 -0
  103. data/stdlib/builtin/range.rbs +226 -0
  104. data/stdlib/builtin/rational.rbs +424 -0
  105. data/stdlib/builtin/rb_config.rbs +57 -0
  106. data/stdlib/builtin/regexp.rbs +1083 -0
  107. data/stdlib/builtin/ruby_vm.rbs +14 -0
  108. data/stdlib/builtin/signal.rbs +55 -0
  109. data/stdlib/builtin/string.rbs +1901 -0
  110. data/stdlib/builtin/string_io.rbs +284 -0
  111. data/stdlib/builtin/struct.rbs +40 -0
  112. data/stdlib/builtin/symbol.rbs +228 -0
  113. data/stdlib/builtin/thread.rbs +1108 -0
  114. data/stdlib/builtin/thread_group.rbs +23 -0
  115. data/stdlib/builtin/time.rbs +1047 -0
  116. data/stdlib/builtin/trace_point.rbs +290 -0
  117. data/stdlib/builtin/true_class.rbs +46 -0
  118. data/stdlib/builtin/unbound_method.rbs +153 -0
  119. data/stdlib/builtin/warning.rbs +17 -0
  120. data/stdlib/coverage/coverage.rbs +62 -0
  121. data/stdlib/csv/csv.rbs +773 -0
  122. data/stdlib/erb/erb.rbs +392 -0
  123. data/stdlib/find/find.rbs +40 -0
  124. data/stdlib/ipaddr/ipaddr.rbs +247 -0
  125. data/stdlib/json/json.rbs +335 -0
  126. data/stdlib/pathname/pathname.rbs +1093 -0
  127. data/stdlib/prime/integer-extension.rbs +23 -0
  128. data/stdlib/prime/prime.rbs +188 -0
  129. data/stdlib/securerandom/securerandom.rbs +9 -0
  130. data/stdlib/set/set.rbs +301 -0
  131. data/stdlib/tmpdir/tmpdir.rbs +53 -0
  132. metadata +292 -0
@@ -0,0 +1,781 @@
1
+ # Ruby exception objects are subclasses of Exception. However, operating
2
+ # systems typically report errors using plain integers. Module Errno is created
3
+ # dynamically to map these operating system errors to Ruby classes, with each
4
+ # error number generating its own subclass of SystemCallError. As the subclass
5
+ # is created in module Errno, its name will start `Errno::`.
6
+ #
7
+ # The names of the `Errno::` classes depend on the environment in which Ruby
8
+ # runs. On a typical Unix or Windows platform, there are Errno classes such as
9
+ # Errno::EACCES, Errno::EAGAIN, Errno::EINTR, and so on.
10
+ #
11
+ # The integer operating system error number corresponding to a particular error
12
+ # is available as the class constant `Errno::`*error*`::Errno`.
13
+ #
14
+ # Errno::EACCES::Errno #=> 13
15
+ # Errno::EAGAIN::Errno #=> 11
16
+ # Errno::EINTR::Errno #=> 4
17
+ #
18
+ # The full list of operating system errors on your particular platform are
19
+ # available as the constants of Errno.
20
+ #
21
+ # Errno.constants #=> :E2BIG, :EACCES, :EADDRINUSE, :EADDRNOTAVAIL, ...
22
+ # System call error module used by webrick for cross platform compatibility.
23
+ #
24
+ # EPROTO
25
+ # : protocol error
26
+ # ECONNRESET
27
+ # : remote host reset the connection request
28
+ # ECONNABORTED
29
+ # : Client sent TCP reset (RST) before server has accepted the connection
30
+ # requested by client.
31
+ #
32
+ #
33
+ module Errno
34
+ end
35
+
36
+ class Errno::E2BIG < SystemCallError
37
+ end
38
+
39
+ Errno::E2BIG::Errno: Integer
40
+
41
+ class Errno::EACCES < SystemCallError
42
+ end
43
+
44
+ Errno::EACCES::Errno: Integer
45
+
46
+ class Errno::EADDRINUSE < SystemCallError
47
+ end
48
+
49
+ Errno::EADDRINUSE::Errno: Integer
50
+
51
+ class Errno::EADDRNOTAVAIL < SystemCallError
52
+ end
53
+
54
+ Errno::EADDRNOTAVAIL::Errno: Integer
55
+
56
+ class Errno::EADV < SystemCallError
57
+ end
58
+
59
+ Errno::EADV::Errno: Integer
60
+
61
+ class Errno::EAFNOSUPPORT < SystemCallError
62
+ end
63
+
64
+ Errno::EAFNOSUPPORT::Errno: Integer
65
+
66
+ class Errno::EAGAIN < SystemCallError
67
+ end
68
+
69
+ Errno::EAGAIN::Errno: Integer
70
+
71
+ class Errno::EALREADY < SystemCallError
72
+ end
73
+
74
+ Errno::EALREADY::Errno: Integer
75
+
76
+ class Errno::EAUTH < SystemCallError
77
+ end
78
+
79
+ Errno::EAUTH::Errno: Integer
80
+
81
+ class Errno::EBADE < SystemCallError
82
+ end
83
+
84
+ Errno::EBADE::Errno: Integer
85
+
86
+ class Errno::EBADF < SystemCallError
87
+ end
88
+
89
+ Errno::EBADF::Errno: Integer
90
+
91
+ class Errno::EBADFD < SystemCallError
92
+ end
93
+
94
+ Errno::EBADFD::Errno: Integer
95
+
96
+ class Errno::EBADMSG < SystemCallError
97
+ end
98
+
99
+ Errno::EBADMSG::Errno: Integer
100
+
101
+ class Errno::EBADR < SystemCallError
102
+ end
103
+
104
+ Errno::EBADR::Errno: Integer
105
+
106
+ class Errno::EBADRPC < SystemCallError
107
+ end
108
+
109
+ Errno::EBADRPC::Errno: Integer
110
+
111
+ class Errno::EBADRQC < SystemCallError
112
+ end
113
+
114
+ Errno::EBADRQC::Errno: Integer
115
+
116
+ class Errno::EBADSLT < SystemCallError
117
+ end
118
+
119
+ Errno::EBADSLT::Errno: Integer
120
+
121
+ class Errno::EBFONT < SystemCallError
122
+ end
123
+
124
+ Errno::EBFONT::Errno: Integer
125
+
126
+ class Errno::EBUSY < SystemCallError
127
+ end
128
+
129
+ Errno::EBUSY::Errno: Integer
130
+
131
+ class Errno::ECANCELED < SystemCallError
132
+ end
133
+
134
+ Errno::ECANCELED::Errno: Integer
135
+
136
+ class Errno::ECAPMODE < SystemCallError
137
+ end
138
+
139
+ Errno::ECAPMODE::Errno: Integer
140
+
141
+ class Errno::ECHILD < SystemCallError
142
+ end
143
+
144
+ Errno::ECHILD::Errno: Integer
145
+
146
+ class Errno::ECHRNG < SystemCallError
147
+ end
148
+
149
+ Errno::ECHRNG::Errno: Integer
150
+
151
+ class Errno::ECOMM < SystemCallError
152
+ end
153
+
154
+ Errno::ECOMM::Errno: Integer
155
+
156
+ # Client sent TCP reset (RST) before server has accepted the connection
157
+ # requested by client.
158
+ #
159
+ class Errno::ECONNABORTED < SystemCallError
160
+ end
161
+
162
+ Errno::ECONNABORTED::Errno: Integer
163
+
164
+ class Errno::ECONNREFUSED < SystemCallError
165
+ end
166
+
167
+ Errno::ECONNREFUSED::Errno: Integer
168
+
169
+ # Remote host reset the connection request.
170
+ #
171
+ class Errno::ECONNRESET < SystemCallError
172
+ end
173
+
174
+ Errno::ECONNRESET::Errno: Integer
175
+
176
+ class Errno::EDEADLK < SystemCallError
177
+ end
178
+
179
+ Errno::EDEADLK::Errno: Integer
180
+
181
+ class Errno::EDEADLOCK < SystemCallError
182
+ end
183
+
184
+ Errno::EDEADLOCK::Errno: Integer
185
+
186
+ class Errno::EDESTADDRREQ < SystemCallError
187
+ end
188
+
189
+ Errno::EDESTADDRREQ::Errno: Integer
190
+
191
+ class Errno::EDOM < SystemCallError
192
+ end
193
+
194
+ Errno::EDOM::Errno: Integer
195
+
196
+ class Errno::EDOOFUS < SystemCallError
197
+ end
198
+
199
+ Errno::EDOOFUS::Errno: Integer
200
+
201
+ class Errno::EDOTDOT < SystemCallError
202
+ end
203
+
204
+ Errno::EDOTDOT::Errno: Integer
205
+
206
+ class Errno::EDQUOT < SystemCallError
207
+ end
208
+
209
+ Errno::EDQUOT::Errno: Integer
210
+
211
+ class Errno::EEXIST < SystemCallError
212
+ end
213
+
214
+ Errno::EEXIST::Errno: Integer
215
+
216
+ class Errno::EFAULT < SystemCallError
217
+ end
218
+
219
+ Errno::EFAULT::Errno: Integer
220
+
221
+ class Errno::EFBIG < SystemCallError
222
+ end
223
+
224
+ Errno::EFBIG::Errno: Integer
225
+
226
+ class Errno::EFTYPE < SystemCallError
227
+ end
228
+
229
+ Errno::EFTYPE::Errno: Integer
230
+
231
+ class Errno::EHOSTDOWN < SystemCallError
232
+ end
233
+
234
+ Errno::EHOSTDOWN::Errno: Integer
235
+
236
+ class Errno::EHOSTUNREACH < SystemCallError
237
+ end
238
+
239
+ Errno::EHOSTUNREACH::Errno: Integer
240
+
241
+ class Errno::EHWPOISON < SystemCallError
242
+ end
243
+
244
+ Errno::EHWPOISON::Errno: Integer
245
+
246
+ class Errno::EIDRM < SystemCallError
247
+ end
248
+
249
+ Errno::EIDRM::Errno: Integer
250
+
251
+ class Errno::EILSEQ < SystemCallError
252
+ end
253
+
254
+ Errno::EILSEQ::Errno: Integer
255
+
256
+ class Errno::EINPROGRESS < SystemCallError
257
+ end
258
+
259
+ Errno::EINPROGRESS::Errno: Integer
260
+
261
+ class Errno::EINTR < SystemCallError
262
+ end
263
+
264
+ Errno::EINTR::Errno: Integer
265
+
266
+ class Errno::EINVAL < SystemCallError
267
+ end
268
+
269
+ Errno::EINVAL::Errno: Integer
270
+
271
+ class Errno::EIO < SystemCallError
272
+ end
273
+
274
+ Errno::EIO::Errno: Integer
275
+
276
+ class Errno::EIPSEC < SystemCallError
277
+ end
278
+
279
+ Errno::EIPSEC::Errno: Integer
280
+
281
+ class Errno::EISCONN < SystemCallError
282
+ end
283
+
284
+ Errno::EISCONN::Errno: Integer
285
+
286
+ class Errno::EISDIR < SystemCallError
287
+ end
288
+
289
+ Errno::EISDIR::Errno: Integer
290
+
291
+ class Errno::EISNAM < SystemCallError
292
+ end
293
+
294
+ Errno::EISNAM::Errno: Integer
295
+
296
+ class Errno::EKEYEXPIRED < SystemCallError
297
+ end
298
+
299
+ Errno::EKEYEXPIRED::Errno: Integer
300
+
301
+ class Errno::EKEYREJECTED < SystemCallError
302
+ end
303
+
304
+ Errno::EKEYREJECTED::Errno: Integer
305
+
306
+ class Errno::EKEYREVOKED < SystemCallError
307
+ end
308
+
309
+ Errno::EKEYREVOKED::Errno: Integer
310
+
311
+ class Errno::EL2HLT < SystemCallError
312
+ end
313
+
314
+ Errno::EL2HLT::Errno: Integer
315
+
316
+ class Errno::EL2NSYNC < SystemCallError
317
+ end
318
+
319
+ Errno::EL2NSYNC::Errno: Integer
320
+
321
+ class Errno::EL3HLT < SystemCallError
322
+ end
323
+
324
+ Errno::EL3HLT::Errno: Integer
325
+
326
+ class Errno::EL3RST < SystemCallError
327
+ end
328
+
329
+ Errno::EL3RST::Errno: Integer
330
+
331
+ class Errno::ELIBACC < SystemCallError
332
+ end
333
+
334
+ Errno::ELIBACC::Errno: Integer
335
+
336
+ class Errno::ELIBBAD < SystemCallError
337
+ end
338
+
339
+ Errno::ELIBBAD::Errno: Integer
340
+
341
+ class Errno::ELIBEXEC < SystemCallError
342
+ end
343
+
344
+ Errno::ELIBEXEC::Errno: Integer
345
+
346
+ class Errno::ELIBMAX < SystemCallError
347
+ end
348
+
349
+ Errno::ELIBMAX::Errno: Integer
350
+
351
+ class Errno::ELIBSCN < SystemCallError
352
+ end
353
+
354
+ Errno::ELIBSCN::Errno: Integer
355
+
356
+ class Errno::ELNRNG < SystemCallError
357
+ end
358
+
359
+ Errno::ELNRNG::Errno: Integer
360
+
361
+ class Errno::ELOOP < SystemCallError
362
+ end
363
+
364
+ Errno::ELOOP::Errno: Integer
365
+
366
+ class Errno::EMEDIUMTYPE < SystemCallError
367
+ end
368
+
369
+ Errno::EMEDIUMTYPE::Errno: Integer
370
+
371
+ class Errno::EMFILE < SystemCallError
372
+ end
373
+
374
+ Errno::EMFILE::Errno: Integer
375
+
376
+ class Errno::EMLINK < SystemCallError
377
+ end
378
+
379
+ Errno::EMLINK::Errno: Integer
380
+
381
+ class Errno::EMSGSIZE < SystemCallError
382
+ end
383
+
384
+ Errno::EMSGSIZE::Errno: Integer
385
+
386
+ class Errno::EMULTIHOP < SystemCallError
387
+ end
388
+
389
+ Errno::EMULTIHOP::Errno: Integer
390
+
391
+ class Errno::ENAMETOOLONG < SystemCallError
392
+ end
393
+
394
+ Errno::ENAMETOOLONG::Errno: Integer
395
+
396
+ class Errno::ENAVAIL < SystemCallError
397
+ end
398
+
399
+ Errno::ENAVAIL::Errno: Integer
400
+
401
+ class Errno::ENEEDAUTH < SystemCallError
402
+ end
403
+
404
+ Errno::ENEEDAUTH::Errno: Integer
405
+
406
+ class Errno::ENETDOWN < SystemCallError
407
+ end
408
+
409
+ Errno::ENETDOWN::Errno: Integer
410
+
411
+ class Errno::ENETRESET < SystemCallError
412
+ end
413
+
414
+ Errno::ENETRESET::Errno: Integer
415
+
416
+ class Errno::ENETUNREACH < SystemCallError
417
+ end
418
+
419
+ Errno::ENETUNREACH::Errno: Integer
420
+
421
+ class Errno::ENFILE < SystemCallError
422
+ end
423
+
424
+ Errno::ENFILE::Errno: Integer
425
+
426
+ class Errno::ENOANO < SystemCallError
427
+ end
428
+
429
+ Errno::ENOANO::Errno: Integer
430
+
431
+ class Errno::ENOATTR < SystemCallError
432
+ end
433
+
434
+ Errno::ENOATTR::Errno: Integer
435
+
436
+ class Errno::ENOBUFS < SystemCallError
437
+ end
438
+
439
+ Errno::ENOBUFS::Errno: Integer
440
+
441
+ class Errno::ENOCSI < SystemCallError
442
+ end
443
+
444
+ Errno::ENOCSI::Errno: Integer
445
+
446
+ class Errno::ENODATA < SystemCallError
447
+ end
448
+
449
+ Errno::ENODATA::Errno: Integer
450
+
451
+ class Errno::ENODEV < SystemCallError
452
+ end
453
+
454
+ Errno::ENODEV::Errno: Integer
455
+
456
+ class Errno::ENOENT < SystemCallError
457
+ end
458
+
459
+ Errno::ENOENT::Errno: Integer
460
+
461
+ class Errno::ENOEXEC < SystemCallError
462
+ end
463
+
464
+ Errno::ENOEXEC::Errno: Integer
465
+
466
+ class Errno::ENOKEY < SystemCallError
467
+ end
468
+
469
+ Errno::ENOKEY::Errno: Integer
470
+
471
+ class Errno::ENOLCK < SystemCallError
472
+ end
473
+
474
+ Errno::ENOLCK::Errno: Integer
475
+
476
+ class Errno::ENOLINK < SystemCallError
477
+ end
478
+
479
+ Errno::ENOLINK::Errno: Integer
480
+
481
+ class Errno::ENOMEDIUM < SystemCallError
482
+ end
483
+
484
+ Errno::ENOMEDIUM::Errno: Integer
485
+
486
+ class Errno::ENOMEM < SystemCallError
487
+ end
488
+
489
+ Errno::ENOMEM::Errno: Integer
490
+
491
+ class Errno::ENOMSG < SystemCallError
492
+ end
493
+
494
+ Errno::ENOMSG::Errno: Integer
495
+
496
+ class Errno::ENONET < SystemCallError
497
+ end
498
+
499
+ Errno::ENONET::Errno: Integer
500
+
501
+ class Errno::ENOPKG < SystemCallError
502
+ end
503
+
504
+ Errno::ENOPKG::Errno: Integer
505
+
506
+ class Errno::ENOPROTOOPT < SystemCallError
507
+ end
508
+
509
+ Errno::ENOPROTOOPT::Errno: Integer
510
+
511
+ class Errno::ENOSPC < SystemCallError
512
+ end
513
+
514
+ Errno::ENOSPC::Errno: Integer
515
+
516
+ class Errno::ENOSR < SystemCallError
517
+ end
518
+
519
+ Errno::ENOSR::Errno: Integer
520
+
521
+ class Errno::ENOSTR < SystemCallError
522
+ end
523
+
524
+ Errno::ENOSTR::Errno: Integer
525
+
526
+ class Errno::ENOSYS < SystemCallError
527
+ end
528
+
529
+ Errno::ENOSYS::Errno: Integer
530
+
531
+ class Errno::ENOTBLK < SystemCallError
532
+ end
533
+
534
+ Errno::ENOTBLK::Errno: Integer
535
+
536
+ class Errno::ENOTCAPABLE < SystemCallError
537
+ end
538
+
539
+ Errno::ENOTCAPABLE::Errno: Integer
540
+
541
+ class Errno::ENOTCONN < SystemCallError
542
+ end
543
+
544
+ Errno::ENOTCONN::Errno: Integer
545
+
546
+ class Errno::ENOTDIR < SystemCallError
547
+ end
548
+
549
+ Errno::ENOTDIR::Errno: Integer
550
+
551
+ class Errno::ENOTEMPTY < SystemCallError
552
+ end
553
+
554
+ Errno::ENOTEMPTY::Errno: Integer
555
+
556
+ class Errno::ENOTNAM < SystemCallError
557
+ end
558
+
559
+ Errno::ENOTNAM::Errno: Integer
560
+
561
+ class Errno::ENOTRECOVERABLE < SystemCallError
562
+ end
563
+
564
+ Errno::ENOTRECOVERABLE::Errno: Integer
565
+
566
+ class Errno::ENOTSOCK < SystemCallError
567
+ end
568
+
569
+ Errno::ENOTSOCK::Errno: Integer
570
+
571
+ class Errno::ENOTSUP < SystemCallError
572
+ end
573
+
574
+ Errno::ENOTSUP::Errno: Integer
575
+
576
+ class Errno::ENOTTY < SystemCallError
577
+ end
578
+
579
+ Errno::ENOTTY::Errno: Integer
580
+
581
+ class Errno::ENOTUNIQ < SystemCallError
582
+ end
583
+
584
+ Errno::ENOTUNIQ::Errno: Integer
585
+
586
+ class Errno::ENXIO < SystemCallError
587
+ end
588
+
589
+ Errno::ENXIO::Errno: Integer
590
+
591
+ class Errno::EOPNOTSUPP < SystemCallError
592
+ end
593
+
594
+ Errno::EOPNOTSUPP::Errno: Integer
595
+
596
+ class Errno::EOVERFLOW < SystemCallError
597
+ end
598
+
599
+ Errno::EOVERFLOW::Errno: Integer
600
+
601
+ class Errno::EOWNERDEAD < SystemCallError
602
+ end
603
+
604
+ Errno::EOWNERDEAD::Errno: Integer
605
+
606
+ class Errno::EPERM < SystemCallError
607
+ end
608
+
609
+ Errno::EPERM::Errno: Integer
610
+
611
+ class Errno::EPFNOSUPPORT < SystemCallError
612
+ end
613
+
614
+ Errno::EPFNOSUPPORT::Errno: Integer
615
+
616
+ class Errno::EPIPE < SystemCallError
617
+ end
618
+
619
+ Errno::EPIPE::Errno: Integer
620
+
621
+ class Errno::EPROCLIM < SystemCallError
622
+ end
623
+
624
+ Errno::EPROCLIM::Errno: Integer
625
+
626
+ class Errno::EPROCUNAVAIL < SystemCallError
627
+ end
628
+
629
+ Errno::EPROCUNAVAIL::Errno: Integer
630
+
631
+ class Errno::EPROGMISMATCH < SystemCallError
632
+ end
633
+
634
+ Errno::EPROGMISMATCH::Errno: Integer
635
+
636
+ class Errno::EPROGUNAVAIL < SystemCallError
637
+ end
638
+
639
+ Errno::EPROGUNAVAIL::Errno: Integer
640
+
641
+ # Protocol error.
642
+ #
643
+ class Errno::EPROTO < SystemCallError
644
+ end
645
+
646
+ Errno::EPROTO::Errno: Integer
647
+
648
+ class Errno::EPROTONOSUPPORT < SystemCallError
649
+ end
650
+
651
+ Errno::EPROTONOSUPPORT::Errno: Integer
652
+
653
+ class Errno::EPROTOTYPE < SystemCallError
654
+ end
655
+
656
+ Errno::EPROTOTYPE::Errno: Integer
657
+
658
+ class Errno::ERANGE < SystemCallError
659
+ end
660
+
661
+ Errno::ERANGE::Errno: Integer
662
+
663
+ class Errno::EREMCHG < SystemCallError
664
+ end
665
+
666
+ Errno::EREMCHG::Errno: Integer
667
+
668
+ class Errno::EREMOTE < SystemCallError
669
+ end
670
+
671
+ Errno::EREMOTE::Errno: Integer
672
+
673
+ class Errno::EREMOTEIO < SystemCallError
674
+ end
675
+
676
+ Errno::EREMOTEIO::Errno: Integer
677
+
678
+ class Errno::ERESTART < SystemCallError
679
+ end
680
+
681
+ Errno::ERESTART::Errno: Integer
682
+
683
+ class Errno::ERFKILL < SystemCallError
684
+ end
685
+
686
+ Errno::ERFKILL::Errno: Integer
687
+
688
+ class Errno::EROFS < SystemCallError
689
+ end
690
+
691
+ Errno::EROFS::Errno: Integer
692
+
693
+ class Errno::ERPCMISMATCH < SystemCallError
694
+ end
695
+
696
+ Errno::ERPCMISMATCH::Errno: Integer
697
+
698
+ class Errno::ESHUTDOWN < SystemCallError
699
+ end
700
+
701
+ Errno::ESHUTDOWN::Errno: Integer
702
+
703
+ class Errno::ESOCKTNOSUPPORT < SystemCallError
704
+ end
705
+
706
+ Errno::ESOCKTNOSUPPORT::Errno: Integer
707
+
708
+ class Errno::ESPIPE < SystemCallError
709
+ end
710
+
711
+ Errno::ESPIPE::Errno: Integer
712
+
713
+ class Errno::ESRCH < SystemCallError
714
+ end
715
+
716
+ Errno::ESRCH::Errno: Integer
717
+
718
+ class Errno::ESRMNT < SystemCallError
719
+ end
720
+
721
+ Errno::ESRMNT::Errno: Integer
722
+
723
+ class Errno::ESTALE < SystemCallError
724
+ end
725
+
726
+ Errno::ESTALE::Errno: Integer
727
+
728
+ class Errno::ESTRPIPE < SystemCallError
729
+ end
730
+
731
+ Errno::ESTRPIPE::Errno: Integer
732
+
733
+ class Errno::ETIME < SystemCallError
734
+ end
735
+
736
+ Errno::ETIME::Errno: Integer
737
+
738
+ class Errno::ETIMEDOUT < SystemCallError
739
+ end
740
+
741
+ Errno::ETIMEDOUT::Errno: Integer
742
+
743
+ class Errno::ETOOMANYREFS < SystemCallError
744
+ end
745
+
746
+ Errno::ETOOMANYREFS::Errno: Integer
747
+
748
+ class Errno::ETXTBSY < SystemCallError
749
+ end
750
+
751
+ Errno::ETXTBSY::Errno: Integer
752
+
753
+ class Errno::EUCLEAN < SystemCallError
754
+ end
755
+
756
+ Errno::EUCLEAN::Errno: Integer
757
+
758
+ class Errno::EUNATCH < SystemCallError
759
+ end
760
+
761
+ Errno::EUNATCH::Errno: Integer
762
+
763
+ class Errno::EUSERS < SystemCallError
764
+ end
765
+
766
+ Errno::EUSERS::Errno: Integer
767
+
768
+ class Errno::EWOULDBLOCK < SystemCallError
769
+ end
770
+
771
+ Errno::EWOULDBLOCK::Errno: Integer
772
+
773
+ class Errno::EXDEV < SystemCallError
774
+ end
775
+
776
+ Errno::EXDEV::Errno: Integer
777
+
778
+ class Errno::EXFULL < SystemCallError
779
+ end
780
+
781
+ Errno::EXFULL::Errno: Integer