ech_config 0.0.2 → 0.0.3
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.
- checksums.yaml +4 -4
- data/.rubocop.yml +1 -0
- data/Gemfile +1 -0
- data/Gemfile.lock +21 -17
- data/lib/ech_config/ech_config_contents/hpke_key_config/hpke_kem_id.rb +6 -2
- data/lib/ech_config/ech_config_contents/hpke_key_config/hpke_public_key.rb +0 -1
- data/lib/ech_config/ech_config_contents/hpke_key_config/hpke_symmetric_cipher_suite/hpke_aead_id.rb +6 -2
- data/lib/ech_config/ech_config_contents/hpke_key_config/hpke_symmetric_cipher_suite/hpke_kdf_id.rb +6 -2
- data/lib/ech_config/ech_config_contents/hpke_key_config/hpke_symmetric_cipher_suite.rb +6 -2
- data/lib/ech_config/ech_config_contents/hpke_key_config.rb +1 -1
- data/lib/ech_config/ech_config_contents.rb +1 -1
- data/lib/ech_config/version.rb +1 -1
- data/lib/ech_config.rb +1 -1
- data/sorbet/rbi/gems/ech_config.rbi +1 -1
- data/sorbet/rbi/gems/parallel.rbi +4 -6
- data/sorbet/rbi/gems/parser.rbi +95 -39
- data/sorbet/rbi/gems/racc.rbi +43 -0
- data/sorbet/rbi/gems/rake.rbi +2 -1
- data/sorbet/rbi/gems/regexp_parser.rbi +78 -36
- data/sorbet/rbi/gems/rexml.rbi +9 -5
- data/sorbet/rbi/gems/rubocop-ast.rbi +6 -1
- data/sorbet/rbi/gems/rubocop-sorbet.rbi +147 -53
- data/sorbet/rbi/gems/ruby-progressbar.rbi +171 -154
- data/sorbet/rbi/gems/unicode-display_width.rbi +1 -1
- data/sorbet/rbi/gems/webrick.rbi +6 -1
- data/sorbet/rbi/hidden-definitions/errors.txt +353 -170
- data/sorbet/rbi/hidden-definitions/hidden.rbi +161 -47
- data/spec/ech_config_spec.rb +35 -0
- data/spec/hpke_key_config_spec.rb +6 -7
- metadata +5 -2
@@ -7,7 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# https://github.com/sorbet/sorbet-typed/new/master?filename=lib/regexp_parser/all/regexp_parser.rbi
|
9
9
|
#
|
10
|
-
# regexp_parser-2.
|
10
|
+
# regexp_parser-2.8.3
|
11
11
|
|
12
12
|
class Regexp
|
13
13
|
end
|
@@ -65,7 +65,6 @@ class Regexp::Parser
|
|
65
65
|
def total_captured_group_count; end
|
66
66
|
def type(token); end
|
67
67
|
include Regexp::Expression
|
68
|
-
include Regexp::Expression::UnicodeProperty
|
69
68
|
end
|
70
69
|
class Regexp::Token < Struct
|
71
70
|
def conditional_level; end
|
@@ -104,6 +103,8 @@ class Regexp::Scanner
|
|
104
103
|
def block=(arg0); end
|
105
104
|
def char_pos; end
|
106
105
|
def char_pos=(arg0); end
|
106
|
+
def collect_tokens; end
|
107
|
+
def collect_tokens=(arg0); end
|
107
108
|
def conditional_stack; end
|
108
109
|
def conditional_stack=(arg0); end
|
109
110
|
def copy(data, ts, te); end
|
@@ -118,13 +119,15 @@ class Regexp::Scanner
|
|
118
119
|
def group_depth=(arg0); end
|
119
120
|
def in_group?; end
|
120
121
|
def in_set?; end
|
121
|
-
def
|
122
|
-
def
|
123
|
-
def
|
122
|
+
def literal_run; end
|
123
|
+
def literal_run=(arg0); end
|
124
|
+
def prev_token; end
|
125
|
+
def prev_token=(arg0); end
|
126
|
+
def scan(input_object, options: nil, collect_tokens: nil, &block); end
|
124
127
|
def self.long_prop_map; end
|
125
128
|
def self.parse_prop_map(name); end
|
126
129
|
def self.posix_classes; end
|
127
|
-
def self.scan(input_object, options: nil, &block); end
|
130
|
+
def self.scan(input_object, options: nil, collect_tokens: nil, &block); end
|
128
131
|
def self.short_prop_map; end
|
129
132
|
def set_depth; end
|
130
133
|
def set_depth=(arg0); end
|
@@ -132,16 +135,16 @@ class Regexp::Scanner
|
|
132
135
|
def spacing_stack=(arg0); end
|
133
136
|
def tokens; end
|
134
137
|
def tokens=(arg0); end
|
135
|
-
def validation_error(type, what, reason = nil); end
|
136
138
|
end
|
137
139
|
class Regexp::Scanner::ScannerError < Regexp::Parser::Error
|
138
140
|
end
|
139
|
-
class Regexp::Scanner::ValidationError < Regexp::Parser::Error
|
140
|
-
def initialize(reason); end
|
141
|
-
end
|
142
141
|
class Regexp::Scanner::PrematureEndError < Regexp::Scanner::ScannerError
|
143
142
|
def initialize(where = nil); end
|
144
143
|
end
|
144
|
+
class Regexp::Scanner::ValidationError < Regexp::Scanner::ScannerError
|
145
|
+
def self.for(type, problem, reason = nil); end
|
146
|
+
def self.types; end
|
147
|
+
end
|
145
148
|
class Regexp::Scanner::InvalidSequenceError < Regexp::Scanner::ValidationError
|
146
149
|
def initialize(what = nil, where = nil); end
|
147
150
|
end
|
@@ -155,10 +158,10 @@ class Regexp::Scanner::InvalidBackrefError < Regexp::Scanner::ValidationError
|
|
155
158
|
def initialize(what, reason); end
|
156
159
|
end
|
157
160
|
class Regexp::Scanner::UnknownUnicodePropertyError < Regexp::Scanner::ValidationError
|
158
|
-
def initialize(name); end
|
161
|
+
def initialize(name, _); end
|
159
162
|
end
|
160
163
|
class Regexp::Scanner::UnknownPosixClassError < Regexp::Scanner::ValidationError
|
161
|
-
def initialize(text); end
|
164
|
+
def initialize(text, _); end
|
162
165
|
end
|
163
166
|
module Regexp::Syntax
|
164
167
|
def comparable(name); end
|
@@ -174,11 +177,9 @@ module Regexp::Syntax
|
|
174
177
|
def self.specified_versions; end
|
175
178
|
def self.supported?(name); end
|
176
179
|
def self.version_class(version); end
|
177
|
-
def self.warn_if_future_version(const_name); end
|
178
180
|
def specified_versions; end
|
179
181
|
def supported?(name); end
|
180
182
|
def version_class(version); end
|
181
|
-
def warn_if_future_version(const_name); end
|
182
183
|
end
|
183
184
|
module Regexp::Syntax::Token
|
184
185
|
end
|
@@ -206,6 +207,8 @@ module Regexp::Syntax::Token::Keep
|
|
206
207
|
end
|
207
208
|
module Regexp::Syntax::Token::Meta
|
208
209
|
end
|
210
|
+
module Regexp::Syntax::Token::Alternation
|
211
|
+
end
|
209
212
|
module Regexp::Syntax::Token::Quantifier
|
210
213
|
end
|
211
214
|
module Regexp::Syntax::Token::UnicodeProperty
|
@@ -281,17 +284,26 @@ class Regexp::Syntax::SyntaxError < Regexp::Parser::Error
|
|
281
284
|
end
|
282
285
|
class Regexp::Lexer
|
283
286
|
def ascend(type, token); end
|
287
|
+
def block; end
|
288
|
+
def block=(arg0); end
|
284
289
|
def break_codepoint_list(token); end
|
285
290
|
def break_literal(token); end
|
291
|
+
def collect_tokens; end
|
292
|
+
def collect_tokens=(arg0); end
|
286
293
|
def conditional_nesting; end
|
287
294
|
def conditional_nesting=(arg0); end
|
288
295
|
def descend(type, token); end
|
289
|
-
def
|
290
|
-
def
|
296
|
+
def emit(token); end
|
297
|
+
def lex(input, syntax = nil, options: nil, collect_tokens: nil, &block); end
|
298
|
+
def merge_condition(current, last); end
|
291
299
|
def nesting; end
|
292
300
|
def nesting=(arg0); end
|
293
|
-
def
|
294
|
-
def
|
301
|
+
def preprev_token; end
|
302
|
+
def preprev_token=(arg0); end
|
303
|
+
def prev_token; end
|
304
|
+
def prev_token=(arg0); end
|
305
|
+
def self.lex(input, syntax = nil, options: nil, collect_tokens: nil, &block); end
|
306
|
+
def self.scan(input, syntax = nil, options: nil, collect_tokens: nil, &block); end
|
295
307
|
def set_nesting; end
|
296
308
|
def set_nesting=(arg0); end
|
297
309
|
def shift; end
|
@@ -305,21 +317,31 @@ module Regexp::Expression::Shared
|
|
305
317
|
def ==(other); end
|
306
318
|
def ===(other); end
|
307
319
|
def base_length; end
|
320
|
+
def capturing?; end
|
308
321
|
def coded_offset; end
|
322
|
+
def comment?; end
|
323
|
+
def decorative?; end
|
324
|
+
def ends_at(include_quantifier = nil); end
|
309
325
|
def eql?(other); end
|
310
326
|
def full_length; end
|
311
327
|
def human_name; end
|
312
328
|
def init_from_token_and_options(token, options = nil); end
|
313
329
|
def initialize_copy(orig); end
|
330
|
+
def inspect; end
|
331
|
+
def intersperse(expressions, separator); end
|
314
332
|
def is?(test_token, test_type = nil); end
|
315
333
|
def nesting_level=(lvl); end
|
316
334
|
def offset; end
|
317
335
|
def one_of?(scope, top = nil); end
|
318
336
|
def optional?; end
|
319
337
|
def parts; end
|
338
|
+
def pre_quantifier_decoration(expression_format = nil); end
|
339
|
+
def pretty_print(q); end
|
340
|
+
def pretty_print_instance_variables; end
|
320
341
|
def quantified?; end
|
321
342
|
def quantifier=(qtf); end
|
322
|
-
def quantifier_affix(expression_format); end
|
343
|
+
def quantifier_affix(expression_format = nil); end
|
344
|
+
def referential?; end
|
323
345
|
def self.included(mod); end
|
324
346
|
def starts_at; end
|
325
347
|
def terminal?; end
|
@@ -329,8 +351,13 @@ module Regexp::Expression::Shared
|
|
329
351
|
def type?(test_type); end
|
330
352
|
end
|
331
353
|
module Regexp::Expression::Shared::ClassMethods
|
354
|
+
def capturing?; end
|
355
|
+
def comment?; end
|
332
356
|
def construct(params = nil); end
|
333
357
|
def construct_defaults; end
|
358
|
+
def decorative?; end
|
359
|
+
def referential?; end
|
360
|
+
def terminal?; end
|
334
361
|
def token_class; end
|
335
362
|
end
|
336
363
|
class Regexp::Expression::Base
|
@@ -341,6 +368,8 @@ class Regexp::Expression::Base
|
|
341
368
|
def case_insensitive?; end
|
342
369
|
def conditional_level; end
|
343
370
|
def conditional_level=(arg0); end
|
371
|
+
def custom_to_s_handling; end
|
372
|
+
def custom_to_s_handling=(arg0); end
|
344
373
|
def d?; end
|
345
374
|
def default_classes?; end
|
346
375
|
def extended?; end
|
@@ -349,7 +378,6 @@ class Regexp::Expression::Base
|
|
349
378
|
def i?; end
|
350
379
|
def ignore_case?; end
|
351
380
|
def initialize(token, options = nil); end
|
352
|
-
def initialize_copy(orig); end
|
353
381
|
def lazy?; end
|
354
382
|
def level; end
|
355
383
|
def level=(arg0); end
|
@@ -361,7 +389,11 @@ class Regexp::Expression::Base
|
|
361
389
|
def nesting_level; end
|
362
390
|
def options; end
|
363
391
|
def options=(arg0); end
|
392
|
+
def parent; end
|
393
|
+
def parent=(arg0); end
|
364
394
|
def possessive?; end
|
395
|
+
def pre_quantifier_decorations; end
|
396
|
+
def pre_quantifier_decorations=(arg0); end
|
365
397
|
def quantifier; end
|
366
398
|
def quantify(*args); end
|
367
399
|
def quantity; end
|
@@ -393,7 +425,10 @@ end
|
|
393
425
|
class Regexp::Expression::Quantifier
|
394
426
|
def conditional_level; end
|
395
427
|
def conditional_level=(arg0); end
|
396
|
-
def
|
428
|
+
def custom_to_s_handling; end
|
429
|
+
def custom_to_s_handling=(arg0); end
|
430
|
+
def deprecated_old_init(token, text, _min, _max, _mode = nil); end
|
431
|
+
def derived_data; end
|
397
432
|
def greedy?; end
|
398
433
|
def initialize(*args); end
|
399
434
|
def lazy?; end
|
@@ -401,12 +436,15 @@ class Regexp::Expression::Quantifier
|
|
401
436
|
def level=(arg0); end
|
402
437
|
def max; end
|
403
438
|
def min; end
|
404
|
-
def minmax; end
|
405
439
|
def mode; end
|
406
440
|
def nesting_level; end
|
407
441
|
def options; end
|
408
442
|
def options=(arg0); end
|
443
|
+
def parent; end
|
444
|
+
def parent=(arg0); end
|
409
445
|
def possessive?; end
|
446
|
+
def pre_quantifier_decorations; end
|
447
|
+
def pre_quantifier_decorations=(arg0); end
|
410
448
|
def quantifier; end
|
411
449
|
def reluctant?; end
|
412
450
|
def set_level; end
|
@@ -431,22 +469,25 @@ class Regexp::Expression::Subexpression < Regexp::Expression::Base
|
|
431
469
|
def at(*args, &block); end
|
432
470
|
def dig(*indices); end
|
433
471
|
def each(*args, &block); end
|
434
|
-
def each_expression(include_self = nil); end
|
472
|
+
def each_expression(include_self = nil, &block); end
|
473
|
+
def each_expression_with_index(&block); end
|
474
|
+
def each_expression_without_index(&block); end
|
435
475
|
def empty?(*args, &block); end
|
436
476
|
def expressions; end
|
437
477
|
def expressions=(arg0); end
|
478
|
+
def extract_quantifier_target(quantifier_description); end
|
438
479
|
def fetch(*args, &block); end
|
439
|
-
def flat_map(include_self = nil); end
|
480
|
+
def flat_map(include_self = nil, &block); end
|
440
481
|
def index(*args, &block); end
|
441
482
|
def initialize(token, options = nil); end
|
442
483
|
def initialize_copy(orig); end
|
443
484
|
def inner_match_length; end
|
444
|
-
def intersperse(expressions, separator); end
|
445
485
|
def join(*args, &block); end
|
446
486
|
def last(*args, &block); end
|
447
487
|
def length(*args, &block); end
|
448
488
|
def match_length; end
|
449
489
|
def parts; end
|
490
|
+
def self.terminal?; end
|
450
491
|
def strfre_tree(format = nil, include_self = nil, separator = nil); end
|
451
492
|
def strfregexp_tree(format = nil, include_self = nil, separator = nil); end
|
452
493
|
def te; end
|
@@ -457,19 +498,17 @@ class Regexp::Expression::Subexpression < Regexp::Expression::Base
|
|
457
498
|
include Enumerable
|
458
499
|
end
|
459
500
|
class Regexp::Expression::Sequence < Regexp::Expression::Subexpression
|
460
|
-
def quantify(*args); end
|
501
|
+
def quantify(token, *args); end
|
461
502
|
def self.add_to(exp, params = nil, active_opts = nil); end
|
462
|
-
def starts_at; end
|
463
503
|
def ts; end
|
464
504
|
end
|
465
505
|
class Regexp::Expression::SequenceOperation < Regexp::Expression::Subexpression
|
466
506
|
def <<(exp); end
|
467
|
-
def add_sequence(active_opts = nil); end
|
507
|
+
def add_sequence(active_opts = nil, params = nil); end
|
468
508
|
def operands; end
|
469
509
|
def operator; end
|
470
510
|
def parts; end
|
471
511
|
def sequences; end
|
472
|
-
def starts_at; end
|
473
512
|
def ts; end
|
474
513
|
end
|
475
514
|
class Regexp::Expression::Alternative < Regexp::Expression::Sequence
|
@@ -516,6 +555,7 @@ class Regexp::Expression::Backreference::Base < Regexp::Expression::Base
|
|
516
555
|
def match_length; end
|
517
556
|
def referenced_expression; end
|
518
557
|
def referenced_expression=(arg0); end
|
558
|
+
def self.referential?; end
|
519
559
|
end
|
520
560
|
class Regexp::Expression::Backreference::Number < Regexp::Expression::Backreference::Base
|
521
561
|
def human_name; end
|
@@ -580,7 +620,6 @@ class Regexp::Expression::CharacterSet::Range < Regexp::Expression::Subexpressio
|
|
580
620
|
def human_name; end
|
581
621
|
def match_length; end
|
582
622
|
def parts; end
|
583
|
-
def starts_at; end
|
584
623
|
def ts; end
|
585
624
|
end
|
586
625
|
module Regexp::Expression::CharacterType
|
@@ -623,14 +662,15 @@ class Regexp::Expression::Conditional::Condition < Regexp::Expression::Base
|
|
623
662
|
def reference; end
|
624
663
|
def referenced_expression; end
|
625
664
|
def referenced_expression=(arg0); end
|
665
|
+
def self.referential?; end
|
626
666
|
end
|
627
667
|
class Regexp::Expression::Conditional::Branch < Regexp::Expression::Sequence
|
628
668
|
def human_name; end
|
629
669
|
end
|
630
670
|
class Regexp::Expression::Conditional::Expression < Regexp::Expression::Subexpression
|
631
671
|
def <<(exp); end
|
632
|
-
def add_sequence(active_opts = nil); end
|
633
|
-
def branch(active_opts = nil); end
|
672
|
+
def add_sequence(active_opts = nil, params = nil); end
|
673
|
+
def branch(active_opts = nil, params = nil); end
|
634
674
|
def branches; end
|
635
675
|
def condition; end
|
636
676
|
def condition=(exp); end
|
@@ -641,6 +681,7 @@ class Regexp::Expression::Conditional::Expression < Regexp::Expression::Subexpre
|
|
641
681
|
def reference; end
|
642
682
|
def referenced_expression; end
|
643
683
|
def referenced_expression=(arg0); end
|
684
|
+
def self.referential?; end
|
644
685
|
end
|
645
686
|
module Regexp::Expression::EscapeSequence
|
646
687
|
end
|
@@ -699,9 +740,11 @@ end
|
|
699
740
|
class Regexp::Expression::FreeSpace < Regexp::Expression::Base
|
700
741
|
def match_length; end
|
701
742
|
def quantify(*_args); end
|
743
|
+
def self.decorative?; end
|
702
744
|
end
|
703
745
|
class Regexp::Expression::Comment < Regexp::Expression::FreeSpace
|
704
746
|
def human_name; end
|
747
|
+
def self.comment?; end
|
705
748
|
end
|
706
749
|
class Regexp::Expression::WhiteSpace < Regexp::Expression::FreeSpace
|
707
750
|
def human_name; end
|
@@ -710,8 +753,6 @@ end
|
|
710
753
|
module Regexp::Expression::Group
|
711
754
|
end
|
712
755
|
class Regexp::Expression::Group::Base < Regexp::Expression::Subexpression
|
713
|
-
def capturing?; end
|
714
|
-
def comment?; end
|
715
756
|
def parts; end
|
716
757
|
end
|
717
758
|
class Regexp::Expression::Group::Passive < Regexp::Expression::Group::Base
|
@@ -732,13 +773,13 @@ class Regexp::Expression::Group::Options < Regexp::Expression::Group::Base
|
|
732
773
|
def quantify(*args); end
|
733
774
|
end
|
734
775
|
class Regexp::Expression::Group::Capture < Regexp::Expression::Group::Base
|
735
|
-
def capturing?; end
|
736
776
|
def human_name; end
|
737
777
|
def identifier; end
|
738
778
|
def number; end
|
739
779
|
def number=(arg0); end
|
740
780
|
def number_at_level; end
|
741
781
|
def number_at_level=(arg0); end
|
782
|
+
def self.capturing?; end
|
742
783
|
end
|
743
784
|
class Regexp::Expression::Group::Named < Regexp::Expression::Group::Capture
|
744
785
|
def human_name; end
|
@@ -748,8 +789,9 @@ class Regexp::Expression::Group::Named < Regexp::Expression::Group::Capture
|
|
748
789
|
def name; end
|
749
790
|
end
|
750
791
|
class Regexp::Expression::Group::Comment < Regexp::Expression::Group::Base
|
751
|
-
def comment?; end
|
752
792
|
def parts; end
|
793
|
+
def self.comment?; end
|
794
|
+
def self.decorative?; end
|
753
795
|
end
|
754
796
|
module Regexp::Expression::Assertion
|
755
797
|
end
|
data/sorbet/rbi/gems/rexml.rbi
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# https://github.com/sorbet/sorbet-typed/new/master?filename=lib/rexml/all/rexml.rbi
|
9
9
|
#
|
10
|
-
# rexml-3.2.
|
10
|
+
# rexml-3.2.6
|
11
11
|
|
12
12
|
module REXML
|
13
13
|
end
|
@@ -166,8 +166,10 @@ class REXML::Entity < REXML::Child
|
|
166
166
|
def name; end
|
167
167
|
def ndata; end
|
168
168
|
def normalized; end
|
169
|
+
def parent=(other); end
|
169
170
|
def pubid; end
|
170
171
|
def ref; end
|
172
|
+
def resolve_value; end
|
171
173
|
def self.matches?(string); end
|
172
174
|
def to_s; end
|
173
175
|
def unnormalized; end
|
@@ -273,7 +275,7 @@ class REXML::Attribute
|
|
273
275
|
def inspect; end
|
274
276
|
def namespace(arg = nil); end
|
275
277
|
def node_type; end
|
276
|
-
def normalized=(
|
278
|
+
def normalized=(new_normalized); end
|
277
279
|
def prefix; end
|
278
280
|
def remove; end
|
279
281
|
def to_s; end
|
@@ -312,14 +314,16 @@ class REXML::Parsers::XPathParser
|
|
312
314
|
def RelativeLocationPath(path, parsed); end
|
313
315
|
def UnaryExpr(path, parsed); end
|
314
316
|
def UnionExpr(path, parsed); end
|
315
|
-
def abbreviate(
|
316
|
-
def expand(
|
317
|
+
def abbreviate(path_or_parsed); end
|
318
|
+
def expand(path_or_parsed); end
|
317
319
|
def get_group(string); end
|
318
320
|
def namespaces=(namespaces); end
|
319
321
|
def parse(path); end
|
320
322
|
def parse_args(string); end
|
323
|
+
def preciate_to_string(parsed, &block); end
|
321
324
|
def predicate(path); end
|
322
|
-
def
|
325
|
+
def predicate_to_path(parsed, &block); end
|
326
|
+
def quote_literal(literal); end
|
323
327
|
include REXML::XMLTokens
|
324
328
|
end
|
325
329
|
module REXML::DClonable
|
@@ -7,7 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# https://github.com/sorbet/sorbet-typed/new/master?filename=lib/rubocop-ast/all/rubocop-ast.rbi
|
9
9
|
#
|
10
|
-
# rubocop-ast-1.
|
10
|
+
# rubocop-ast-1.30.0
|
11
11
|
|
12
12
|
module RuboCop
|
13
13
|
end
|
@@ -249,6 +249,7 @@ class RuboCop::AST::NodePattern::Node < Parser::AST::Node
|
|
249
249
|
def matches_within_set?; end
|
250
250
|
def nb_captures; end
|
251
251
|
def rest?; end
|
252
|
+
def source_range; end
|
252
253
|
def variadic?; end
|
253
254
|
def with(type: nil, children: nil, location: nil); end
|
254
255
|
extend Forwardable
|
@@ -792,6 +793,7 @@ module RuboCop::AST::MethodDispatchNode
|
|
792
793
|
def non_bare_access_modifier_declaration?(param0 = nil); end
|
793
794
|
def receiver; end
|
794
795
|
def safe_navigation?; end
|
796
|
+
def selector; end
|
795
797
|
def self_receiver?; end
|
796
798
|
def setter_method?; end
|
797
799
|
def special_modifier?; end
|
@@ -872,8 +874,10 @@ class RuboCop::AST::BlockNode < RuboCop::AST::Node
|
|
872
874
|
def braces?; end
|
873
875
|
def closing_delimiter; end
|
874
876
|
def delimiters; end
|
877
|
+
def first_argument; end
|
875
878
|
def keywords?; end
|
876
879
|
def lambda?; end
|
880
|
+
def last_argument; end
|
877
881
|
def method_name; end
|
878
882
|
def multiline?; end
|
879
883
|
def numbered_arguments; end
|
@@ -1019,6 +1023,7 @@ end
|
|
1019
1023
|
class RuboCop::AST::KeywordSplatNode < RuboCop::AST::Node
|
1020
1024
|
def colon?; end
|
1021
1025
|
def hash_rocket?; end
|
1026
|
+
def kwsplat_type?; end
|
1022
1027
|
def node_parts; end
|
1023
1028
|
def operator; end
|
1024
1029
|
include RuboCop::AST::HashElementNode
|