sord 0.8.0 → 0.9.0

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.
@@ -7,13 +7,14 @@
7
7
  #
8
8
  # https://github.com/sorbet/sorbet-typed/new/master?filename=lib/sorbet-runtime/all/sorbet-runtime.rbi
9
9
  #
10
- # sorbet-runtime-0.4.4358
10
+ # sorbet-runtime-0.4.4537
11
11
  module T::Configuration
12
- def self.call_validation_error_handler(signature, opts); end
12
+ def self.call_validation_error_handler(signature, opts = nil); end
13
13
  def self.call_validation_error_handler=(value); end
14
14
  def self.call_validation_error_handler_default(signature, opts); end
15
15
  def self.default_checked_level=(default_checked_level); end
16
16
  def self.enable_checking_for_sigs_marked_checked_tests; end
17
+ def self.enable_final_checks_on_hooks; end
17
18
  def self.hard_assert_handler(str, extra); end
18
19
  def self.hard_assert_handler=(value); end
19
20
  def self.hard_assert_handler_default(str, _); end
@@ -23,18 +24,20 @@ module T::Configuration
23
24
  def self.log_info_handler(str, extra); end
24
25
  def self.log_info_handler=(value); end
25
26
  def self.log_info_handler_default(str, extra); end
27
+ def self.reset_final_checks_on_hooks; end
26
28
  def self.scalar_types; end
27
29
  def self.scalar_types=(values); end
28
30
  def self.sig_builder_error_handler(error, location); end
29
31
  def self.sig_builder_error_handler=(value); end
30
32
  def self.sig_builder_error_handler_default(error, location); end
31
- def self.sig_validation_error_handler(error, opts); end
33
+ def self.sig_validation_error_handler(error, opts = nil); end
32
34
  def self.sig_validation_error_handler=(value); end
33
35
  def self.sig_validation_error_handler_default(error, opts); end
34
36
  def self.soft_assert_handler(str, extra); end
35
37
  def self.soft_assert_handler=(value); end
36
38
  def self.soft_assert_handler_default(str, extra); end
37
39
  def self.validate_lambda_given!(value); end
40
+ def self.without_ruby_warnings; end
38
41
  end
39
42
  module T::Profile
40
43
  def self.reset; end
@@ -48,6 +51,7 @@ module T::Profile
48
51
  def self.typecheck_samples=(arg0); end
49
52
  end
50
53
  module T
54
+ def self.absurd(value); end
51
55
  end
52
56
  module T::Array
53
57
  end
@@ -70,6 +74,8 @@ class T::Private::DeclState
70
74
  def reset!; end
71
75
  def self.current; end
72
76
  def self.current=(other); end
77
+ def skip_on_method_added; end
78
+ def skip_on_method_added=(arg0); end
73
79
  end
74
80
  module T::Utils
75
81
  def self.arity(method); end
@@ -80,7 +86,6 @@ module T::Utils
80
86
  def self.signature_for_instance_method(mod, method_name); end
81
87
  def self.string_truncate_middle(str, start_len, end_len, ellipsis = nil); end
82
88
  def self.unwrap_nilable(type); end
83
- def self.validate_sigs; end
84
89
  def self.wrap_method_with_call_validation_if_needed(mod, method_sig, original_method); end
85
90
  end
86
91
  class T::Utils::RuntimeProfiled
@@ -95,12 +100,6 @@ class T::Private::ClassUtils::ReplacedMethod
95
100
  def restore; end
96
101
  def to_s; end
97
102
  end
98
- module T::Private::ErrorHandler
99
- def self.handle_call_validation_error(signature, opts = nil); end
100
- def self.handle_inline_type_error(type_error); end
101
- def self.handle_sig_builder_error(error, location); end
102
- def self.handle_sig_validation_error(error, opts = nil); end
103
- end
104
103
  module T::Private::RuntimeLevels
105
104
  def self._toggle_checking_tests(checked); end
106
105
  def self.check_tests?; end
@@ -109,9 +108,14 @@ module T::Private::RuntimeLevels
109
108
  def self.enable_checking_in_tests; end
110
109
  end
111
110
  module T::Private::Methods
111
+ def self._check_final_ancestors(target, target_ancestors, source_method_names); end
112
+ def self._hook_impl(target, target_ancestors, source); end
112
113
  def self._on_method_added(hook_mod, method_name, is_singleton_method: nil); end
114
+ def self.add_final_method(method_key); end
115
+ def self.add_module_with_final(mod); end
113
116
  def self.build_sig(hook_mod, method_name, original_method, current_declaration, loc); end
114
- def self.declare_sig(mod, &blk); end
117
+ def self.declare_sig(mod, arg, &blk); end
118
+ def self.final_method?(method_key); end
115
119
  def self.finalize_proc(decl); end
116
120
  def self.has_sig_block_for_key(key); end
117
121
  def self.has_sig_block_for_method(method); end
@@ -120,13 +124,16 @@ module T::Private::Methods
120
124
  def self.key_to_method(key); end
121
125
  def self.maybe_run_sig_block_for_key(key); end
122
126
  def self.maybe_run_sig_block_for_method(method); end
127
+ def self.method_owner_and_name_to_key(owner, name); end
123
128
  def self.method_to_key(method); end
129
+ def self.module_with_final?(mod); end
124
130
  def self.register_forwarder(from_method, to_method, mode: nil, remove_first_param: nil); end
125
131
  def self.run_all_sig_blocks; end
126
132
  def self.run_builder(declaration_block); end
127
133
  def self.run_sig(hook_mod, method_name, original_method, declaration_block); end
128
134
  def self.run_sig_block_for_key(key); end
129
135
  def self.run_sig_block_for_method(method); end
136
+ def self.set_final_checks_on_hooks(enable); end
130
137
  def self.sig_error(loc, message); end
131
138
  def self.signature_for_key(key); end
132
139
  def self.signature_for_method(method); end
@@ -136,6 +143,8 @@ end
136
143
  class T::Private::Methods::DeclarationBlock < Struct
137
144
  def blk; end
138
145
  def blk=(_); end
146
+ def final; end
147
+ def final=(_); end
139
148
  def loc; end
140
149
  def loc=(_); end
141
150
  def mod; end
@@ -146,15 +155,28 @@ class T::Private::Methods::DeclarationBlock < Struct
146
155
  def self.new(*arg0); end
147
156
  end
148
157
  module T::Sig
149
- def sig(&blk); end
158
+ def sig(arg = nil, &blk); end
150
159
  end
151
160
  module T::Sig::WithoutRuntime
152
161
  end
153
162
  module T::Helpers
154
163
  def abstract!; end
164
+ def final!; end
155
165
  def interface!; end
156
166
  def mixes_in_class_methods(mod); end
157
167
  end
168
+ module T::Private::Final
169
+ def self.declare(mod); end
170
+ def self.final_module?(mod); end
171
+ def self.mark_as_final_module(mod); end
172
+ end
173
+ module T::Private::Final::NoInherit
174
+ def inherited(arg); end
175
+ end
176
+ module T::Private::Final::NoIncludeExtend
177
+ def extended(arg); end
178
+ def included(arg); end
179
+ end
158
180
  module T::Types
159
181
  end
160
182
  class T::Types::Base
@@ -270,8 +292,8 @@ module T::Private::Abstract::Validate
270
292
  end
271
293
  module T::Generic
272
294
  def [](*types); end
273
- def type_member(variance = nil, fixed: nil); end
274
- def type_template(variance = nil, fixed: nil); end
295
+ def type_member(variance = nil, fixed: nil, lower: nil, upper: nil); end
296
+ def type_template(variance = nil, fixed: nil, lower: nil, upper: nil); end
275
297
  include Kernel
276
298
  include T::Helpers
277
299
  end
@@ -322,6 +344,8 @@ class T::Private::Methods::Declaration < Struct
322
344
  def mod=(_); end
323
345
  def mode; end
324
346
  def mode=(_); end
347
+ def on_failure; end
348
+ def on_failure=(_); end
325
349
  def override_allow_incompatible; end
326
350
  def override_allow_incompatible=(_); end
327
351
  def params; end
@@ -332,8 +356,6 @@ class T::Private::Methods::Declaration < Struct
332
356
  def self.inspect; end
333
357
  def self.members; end
334
358
  def self.new(*arg0); end
335
- def soft_notify; end
336
- def soft_notify=(_); end
337
359
  def type_parameters; end
338
360
  def type_parameters=(_); end
339
361
  end
@@ -343,15 +365,16 @@ class T::Private::Methods::DeclBuilder
343
365
  def check_live!; end
344
366
  def checked(level); end
345
367
  def decl; end
368
+ def final; end
346
369
  def finalize!; end
347
370
  def generated; end
348
371
  def implementation; end
349
372
  def initialize(mod); end
373
+ def on_failure(*args); end
350
374
  def overridable; end
351
375
  def override(allow_incompatible: nil); end
352
376
  def params(params); end
353
377
  def returns(type); end
354
- def soft(notify:); end
355
378
  def type_parameters(*names); end
356
379
  def void; end
357
380
  end
@@ -370,7 +393,7 @@ class T::Private::Methods::Signature
370
393
  def generated; end
371
394
  def has_keyrest; end
372
395
  def has_rest; end
373
- def initialize(method:, method_name:, raw_arg_types:, raw_return_type:, bind:, mode:, check_level:, soft_notify:, parameters: nil, generated: nil, override_allow_incompatible: nil); end
396
+ def initialize(method:, method_name:, raw_arg_types:, raw_return_type:, bind:, mode:, check_level:, on_failure:, parameters: nil, generated: nil, override_allow_incompatible: nil); end
374
397
  def keyrest_name; end
375
398
  def keyrest_type; end
376
399
  def kwarg_names; end
@@ -380,6 +403,7 @@ class T::Private::Methods::Signature
380
403
  def method_desc; end
381
404
  def method_name; end
382
405
  def mode; end
406
+ def on_failure; end
383
407
  def override_allow_incompatible; end
384
408
  def owner; end
385
409
  def parameters; end
@@ -389,7 +413,6 @@ class T::Private::Methods::Signature
389
413
  def rest_type; end
390
414
  def return_type; end
391
415
  def self.new_untyped(method:, mode: nil, parameters: nil); end
392
- def soft_notify; end
393
416
  end
394
417
  module T::Utils::Nilable
395
418
  def self.get_type_info(prop_type); end
@@ -467,11 +490,11 @@ class T::Props::Decorator
467
490
  def handle_redaction_option(*args, &blk); end
468
491
  def hash_key_custom_type(*args, &blk); end
469
492
  def hash_value_subdoc_type(*args, &blk); end
470
- def initialize(*args, &blk); end
493
+ def initialize(klass); end
471
494
  def is_nilable?(*args, &blk); end
472
- def model_inherited(*args, &blk); end
495
+ def model_inherited(child); end
473
496
  def mutate_prop_backdoor!(*args, &blk); end
474
- def plugin(arg0, &blk); end
497
+ def plugin(mod); end
475
498
  def prop_defined(*args, &blk); end
476
499
  def prop_get(*args, &blk); end
477
500
  def prop_rules(*args, &blk); end
@@ -7,7 +7,7 @@
7
7
  #
8
8
  # https://github.com/sorbet/sorbet-typed/new/master?filename=lib/yard/all/yard.rbi
9
9
  #
10
- # yard-0.9.19
10
+ # yard-0.9.20
11
11
  module YARD
12
12
  def self.load_plugins; end
13
13
  def self.parse(*args); end
@@ -113,8 +113,8 @@ end
113
113
  class File < IO
114
114
  def self.cleanpath(path, rel_root = nil); end
115
115
  def self.empty?(arg0); end
116
- def self.join(*arg0); end
117
- def self.split(arg0); end
116
+ def self.open!(file, *args, &block); end
117
+ def self.relative_path(from, to); end
118
118
  end
119
119
  module Gem
120
120
  def self.source_index; end
@@ -212,14 +212,11 @@
212
212
  # wrong constant name div$2
213
213
  # wrong constant name power$2
214
214
  # wrong constant name to_s$1
215
- # wrong constant name _load
216
- # wrong constant name double_fig
217
- # wrong constant name limit
218
- # wrong constant name mode
215
+ # undefined singleton method `limit$1' for `BigDecimal'
216
+ # undefined singleton method `mode$1' for `BigDecimal'
217
+ # wrong constant name limit$1
218
+ # wrong constant name mode$1
219
219
  # wrong constant name new
220
- # wrong constant name save_exception_mode
221
- # wrong constant name save_limit
222
- # wrong constant name save_rounding_mode
223
220
  # wrong constant name clone
224
221
  # wrong constant name irb
225
222
  # wrong constant name local_variable_defined?
@@ -323,6 +320,9 @@
323
320
  # wrong constant name max_retries=
324
321
  # wrong constant name redirect_limit
325
322
  # wrong constant name redirect_limit=
323
+ # wrong constant name link
324
+ # wrong constant name cp_lr
325
+ # wrong constant name link_entry
326
326
  # uninitialized constant Bundler::GemHelper::DEFAULT
327
327
  # uninitialized constant Bundler::GemHelper::LN_SUPPORTED
328
328
  # uninitialized constant Bundler::GemHelper::LOW_METHODS
@@ -353,7 +353,8 @@
353
353
  # wrong constant name perform_git_push
354
354
  # wrong constant name rubygem_push
355
355
  # wrong constant name sh
356
- # wrong constant name sh_with_code
356
+ # wrong constant name sh_with_input
357
+ # wrong constant name sh_with_status
357
358
  # wrong constant name spec_path
358
359
  # wrong constant name tag_version
359
360
  # wrong constant name version
@@ -392,6 +393,7 @@
392
393
  # wrong constant name run
393
394
  # wrong constant name <static-init>
394
395
  # wrong constant name <static-init>
396
+ # uninitialized constant Bundler::Index::Elem
395
397
  # wrong constant name initialize
396
398
  # wrong constant name inject
397
399
  # wrong constant name remove
@@ -407,6 +409,8 @@
407
409
  # wrong constant name ambiguous_gems
408
410
  # wrong constant name ambiguous_gems=
409
411
  # wrong constant name install
412
+ # uninitialized constant Bundler::Molinillo::DependencyGraph::Elem
413
+ # uninitialized constant Bundler::Molinillo::DependencyGraph::Log::Elem
410
414
  # wrong constant name ==
411
415
  # wrong constant name app_cache_dirname
412
416
  # wrong constant name app_cache_path
@@ -500,6 +504,9 @@
500
504
  # wrong constant name default_retries
501
505
  # uninitialized constant Bundler::RubyGemsGemInstaller::ENV_PATHS
502
506
  # wrong constant name <static-init>
507
+ # uninitialized constant Bundler::RubygemsIntegration::MoreFuture::EXT_LOCK
508
+ # Did you mean? Bundler::RubygemsIntegration::EXT_LOCK
509
+ # wrong constant name default_stubs
503
510
  # wrong constant name ==
504
511
  # wrong constant name fallback_timeout
505
512
  # wrong constant name fallback_timeout=
@@ -524,6 +531,7 @@
524
531
  # wrong constant name <static-init>
525
532
  # wrong constant name <static-init>
526
533
  # wrong constant name validate!
534
+ # uninitialized constant Bundler::SpecSet::Elem
527
535
  # wrong constant name add_color
528
536
  # wrong constant name ask
529
537
  # wrong constant name confirm
@@ -778,7 +786,6 @@
778
786
  # wrong constant name first$2
779
787
  # wrong constant name grep_v
780
788
  # wrong constant name inject$2
781
- # wrong constant name lazy
782
789
  # wrong constant name max$2
783
790
  # wrong constant name max_by$2
784
791
  # wrong constant name min$2
@@ -1025,11 +1032,9 @@
1025
1032
  # wrong constant name lchown$1
1026
1033
  # wrong constant name lutime
1027
1034
  # wrong constant name mkfifo
1028
- # wrong constant name open!
1029
1035
  # wrong constant name read_binary
1030
1036
  # wrong constant name realdirpath$1
1031
1037
  # wrong constant name realpath$1
1032
- # wrong constant name relative_path
1033
1038
  # wrong constant name umask$1
1034
1039
  # wrong constant name utime$1
1035
1040
  # wrong constant name blockdev?
@@ -3062,7 +3067,6 @@
3062
3067
  # undefined method `fetch$2' for class `Hash'
3063
3068
  # undefined method `initialize$2' for class `Hash'
3064
3069
  # Did you mean? initialize
3065
- # undefined method `merge$2' for class `Hash'
3066
3070
  # wrong constant name <
3067
3071
  # wrong constant name <=
3068
3072
  # wrong constant name >
@@ -3079,7 +3083,6 @@
3079
3083
  # wrong constant name flatten
3080
3084
  # wrong constant name index
3081
3085
  # wrong constant name initialize$2
3082
- # wrong constant name merge$2
3083
3086
  # wrong constant name merge!
3084
3087
  # wrong constant name replace
3085
3088
  # wrong constant name slice
@@ -3220,78 +3223,8 @@
3220
3223
  # wrong constant name to_bn
3221
3224
  # wrong constant name to_s$1
3222
3225
  # wrong constant name sqrt
3223
- # wrong constant name <Class:Generator>
3224
- # wrong constant name <Class:Parser>
3225
- # wrong constant name <Class:GeneratorMethods>
3226
- # wrong constant name <Class:State>
3227
- # wrong constant name <Class:Array>
3228
- # wrong constant name <Class:FalseClass>
3229
- # wrong constant name <Class:Float>
3230
- # wrong constant name <Class:Hash>
3231
- # wrong constant name <Class:Integer>
3232
- # wrong constant name <Class:NilClass>
3233
- # wrong constant name <Class:Object>
3234
- # wrong constant name <Class:String>
3235
- # wrong constant name <Class:TrueClass>
3236
- # wrong constant name to_json
3237
- # wrong constant name <static-init>
3238
- # wrong constant name to_json
3239
- # wrong constant name <static-init>
3240
- # wrong constant name to_json
3241
- # wrong constant name <static-init>
3242
- # wrong constant name to_json
3243
- # wrong constant name <static-init>
3244
- # wrong constant name to_json
3245
- # wrong constant name <static-init>
3246
- # wrong constant name to_json
3247
- # wrong constant name <static-init>
3248
- # wrong constant name to_json
3249
- # wrong constant name <static-init>
3250
- # wrong constant name <Class:Extend>
3251
- # wrong constant name to_json
3252
- # wrong constant name to_json_raw
3253
- # wrong constant name to_json_raw_object
3254
- # wrong constant name json_create
3255
- # wrong constant name <static-init>
3256
- # wrong constant name <static-init>
3257
- # wrong constant name to_json
3258
- # wrong constant name <static-init>
3259
- # wrong constant name <static-init>
3260
- # wrong constant name []
3261
- # wrong constant name []=
3262
- # wrong constant name allow_nan?
3263
- # wrong constant name array_nl
3264
- # wrong constant name array_nl=
3265
- # wrong constant name ascii_only?
3266
- # wrong constant name buffer_initial_length
3267
- # wrong constant name buffer_initial_length=
3268
- # wrong constant name check_circular?
3269
- # wrong constant name configure
3270
- # wrong constant name depth
3271
- # wrong constant name depth=
3272
- # wrong constant name generate
3273
- # wrong constant name indent
3274
- # wrong constant name indent=
3275
- # wrong constant name initialize
3276
- # wrong constant name max_nesting
3277
- # wrong constant name max_nesting=
3278
- # wrong constant name merge
3279
- # wrong constant name object_nl
3280
- # wrong constant name object_nl=
3281
- # wrong constant name space
3282
- # wrong constant name space=
3283
- # wrong constant name space_before
3284
- # wrong constant name space_before=
3285
- # wrong constant name to_h
3286
- # wrong constant name to_hash
3287
- # wrong constant name <static-init>
3288
3226
  # wrong constant name from_state
3289
- # wrong constant name <static-init>
3290
3227
  # wrong constant name initialize
3291
- # wrong constant name parse
3292
- # wrong constant name source
3293
- # wrong constant name <static-init>
3294
- # wrong constant name <static-init>
3295
3228
  # undefined singleton method `dump$1' for `JSON'
3296
3229
  # undefined singleton method `generate$1' for `JSON'
3297
3230
  # undefined singleton method `pretty_generate$1' for `JSON'
@@ -3384,7 +3317,7 @@
3384
3317
  # wrong constant name source_location
3385
3318
  # wrong constant name super_method
3386
3319
  # wrong constant name unbind
3387
- # undefined method `class_eval$1' for class `Module'
3320
+ # undefined method `class_eval$2' for class `Module'
3388
3321
  # Did you mean? class_eval
3389
3322
  # undefined method `class_variables$1' for class `Module'
3390
3323
  # Did you mean? class_variables
@@ -3405,7 +3338,7 @@
3405
3338
  # undefined method `method_defined?$1' for class `Module'
3406
3339
  # Did you mean? method_defined?
3407
3340
  # method_undefined
3408
- # undefined method `module_eval$1' for class `Module'
3341
+ # undefined method `module_eval$2' for class `Module'
3409
3342
  # Did you mean? module_eval
3410
3343
  # undefined method `private_instance_methods$1' for class `Module'
3411
3344
  # Did you mean? private_instance_methods
@@ -3422,7 +3355,7 @@
3422
3355
  # Did you mean? public_method_defined?
3423
3356
  # undefined method `remove_method$1' for class `Module'
3424
3357
  # Did you mean? remove_method
3425
- # wrong constant name class_eval$1
3358
+ # wrong constant name class_eval$2
3426
3359
  # wrong constant name class_variables$1
3427
3360
  # wrong constant name const_defined?$1
3428
3361
  # wrong constant name const_get$1
@@ -3431,7 +3364,7 @@
3431
3364
  # wrong constant name deprecate_constant
3432
3365
  # wrong constant name instance_methods$1
3433
3366
  # wrong constant name method_defined?$1
3434
- # wrong constant name module_eval$1
3367
+ # wrong constant name module_eval$2
3435
3368
  # wrong constant name private_instance_methods$1
3436
3369
  # wrong constant name private_method_defined?$1
3437
3370
  # wrong constant name protected_instance_methods$1
@@ -3766,7 +3699,6 @@
3766
3699
  # wrong constant name <<
3767
3700
  # wrong constant name ===
3768
3701
  # wrong constant name >>
3769
- # wrong constant name []
3770
3702
  # wrong constant name clone
3771
3703
  # wrong constant name curry$1
3772
3704
  # wrong constant name lambda?
@@ -4259,9 +4191,6 @@
4259
4191
  # wrong constant name wrap
4260
4192
  # wrong constant name <static-init>
4261
4193
  # wrong constant name encode_fallback
4262
- # uninitialized constant RSpec::Core::ExampleGroup::BE_PREDICATE_REGEX
4263
- # uninitialized constant RSpec::Core::ExampleGroup::DYNAMIC_MATCHER_REGEX
4264
- # uninitialized constant RSpec::Core::ExampleGroup::HAS_REGEX
4265
4194
  # uninitialized constant RSpec::Core::ExampleGroup::NOT_YET_IMPLEMENTED
4266
4195
  # uninitialized constant RSpec::Core::ExampleGroup::NO_REASON_GIVEN
4267
4196
  # wrong constant name initialize
@@ -4508,7 +4437,7 @@
4508
4437
  # wrong constant name <static-init>
4509
4438
  # wrong constant name worse_than?
4510
4439
  # wrong constant name +
4511
- # uninitialized constant #<Class:0x00007ff617c20640>::Elem
4440
+ # uninitialized constant #<Class:0x00007fc333cd9af8>::Elem
4512
4441
  # wrong constant name candidate?
4513
4442
  # wrong constant name ideal?
4514
4443
  # wrong constant name indeterminate_actual_indexes
@@ -5114,9 +5043,10 @@
5114
5043
  # wrong constant name <static-init>
5115
5044
  # wrong constant name cyan
5116
5045
  # wrong constant name emojify
5046
+ # wrong constant name init
5117
5047
  # wrong constant name main
5118
5048
  # wrong constant name make_step
5119
- # wrong constant name parse_command
5049
+ # wrong constant name usage
5120
5050
  # wrong constant name yellow
5121
5051
  # wrong constant name <static-init>
5122
5052
  # wrong constant name real_ancestors
@@ -5176,6 +5106,7 @@
5176
5106
  # wrong constant name main
5177
5107
  # wrong constant name output_file
5178
5108
  # wrong constant name <static-init>
5109
+ # wrong constant name <static-init>
5179
5110
  # uninitialized constant SortedSet::InspectKey
5180
5111
  # wrong constant name initialize
5181
5112
  # wrong constant name setup
@@ -5203,6 +5134,7 @@
5203
5134
  # undefined method `lines$1' for class `String'
5204
5135
  # undefined method `ljust$1' for class `String'
5205
5136
  # undefined method `match$2' for class `String'
5137
+ # undefined method `match?$2' for class `String'
5206
5138
  # undefined method `prepend$1' for class `String'
5207
5139
  # Did you mean? prepend
5208
5140
  # prepended
@@ -5257,7 +5189,7 @@
5257
5189
  # wrong constant name lines$1
5258
5190
  # wrong constant name ljust$1
5259
5191
  # wrong constant name match$2
5260
- # wrong constant name match?
5192
+ # wrong constant name match?$2
5261
5193
  # wrong constant name prepend$1
5262
5194
  # wrong constant name reverse!
5263
5195
  # wrong constant name rindex$1