openfeature-sdk-sorbet 0.2.0.2 → 0.3.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.
- checksums.yaml +4 -4
- data/.rubocop.yml +2 -1
- data/.ruby-version +1 -1
- data/.tool-versions +1 -1
- data/CHANGELOG.md +9 -6
- data/Gemfile +1 -1
- data/Gemfile.lock +55 -49
- data/README.md +23 -6
- data/lib/open_feature/client.rb +90 -32
- data/lib/open_feature/client_metadata.rb +1 -0
- data/lib/open_feature/evaluation_context.rb +7 -5
- data/lib/open_feature/evaluation_details.rb +2 -2
- data/lib/open_feature/hook.rb +41 -1
- data/lib/open_feature/hook_context.rb +30 -0
- data/lib/open_feature/hooks.rb +22 -0
- data/lib/open_feature/multiple_source_provider.rb +28 -12
- data/lib/open_feature/no_op_provider.rb +2 -3
- data/lib/open_feature/provider.rb +16 -2
- data/lib/open_feature/provider_status.rb +13 -0
- data/lib/open_feature.rb +9 -2
- data/sorbet/rbi/gems/.gitattributes +1 -0
- data/sorbet/rbi/gems/{json@2.6.3.rbi → json@2.7.1.rbi} +80 -60
- data/sorbet/rbi/gems/language_server-protocol@3.17.0.3.rbi +14237 -0
- data/sorbet/rbi/gems/{minitest@5.18.0.rbi → minitest@5.21.2.rbi} +299 -258
- data/sorbet/rbi/gems/{parallel@1.23.0.rbi → parallel@1.24.0.rbi} +8 -1
- data/sorbet/rbi/gems/{parser@3.2.2.1.rbi → parser@3.3.0.5.rbi} +438 -2219
- data/sorbet/rbi/gems/prism@0.19.0.rbi +25199 -0
- data/sorbet/rbi/gems/psych@5.1.2.rbi +1731 -0
- data/sorbet/rbi/gems/racc@1.7.3.rbi +157 -0
- data/sorbet/rbi/gems/{rake@13.0.6.rbi → rake@13.1.0.rbi} +68 -65
- data/sorbet/rbi/gems/{rbi@0.0.16.rbi → rbi@0.1.6.rbi} +628 -755
- data/sorbet/rbi/gems/{regexp_parser@2.8.0.rbi → regexp_parser@2.9.0.rbi} +203 -180
- data/sorbet/rbi/gems/{rexml@3.2.5.rbi → rexml@3.2.6.rbi} +116 -52
- data/sorbet/rbi/gems/{rubocop-ast@1.28.1.rbi → rubocop-ast@1.30.0.rbi} +178 -84
- data/sorbet/rbi/gems/{rubocop-minitest@0.31.0.rbi → rubocop-minitest@0.34.5.rbi} +280 -232
- data/sorbet/rbi/gems/{rubocop-performance@1.17.1.rbi → rubocop-performance@1.20.2.rbi} +397 -172
- data/sorbet/rbi/gems/{rubocop-sorbet@0.7.0.rbi → rubocop-sorbet@0.7.6.rbi} +728 -261
- data/sorbet/rbi/gems/{rubocop@1.51.0.rbi → rubocop@1.60.2.rbi} +4006 -1936
- data/sorbet/rbi/gems/spoom@1.2.1.rbi +17 -56
- data/sorbet/rbi/gems/stringio@3.1.0.rbi +8 -0
- data/sorbet/rbi/gems/{tapioca@0.11.6.rbi → tapioca@0.11.17.rbi} +778 -576
- data/sorbet/rbi/gems/{thor@1.2.2.rbi → thor@1.3.0.rbi} +775 -395
- data/sorbet/rbi/gems/yard-sorbet@0.8.1.rbi +1 -1
- data/sorbet/rbi/gems/yard@0.9.34.rbi +2 -2
- data/sorbet/rbi/gems/{zeitwerk@2.6.8.rbi → zeitwerk@2.6.12.rbi} +78 -67
- data/sorbet/tapioca/config.yml +2 -2
- data/sorbet/tapioca/require.rb +3 -1
- metadata +36 -31
- data/openfeature-sdk-sorbet.gemspec +0 -35
- data/sorbet/rbi/gems/diff-lcs@1.5.0.rbi +0 -1083
- data/sorbet/rbi/gems/irb@1.6.4.rbi +0 -342
- data/sorbet/rbi/gems/unparser@0.6.7.rbi +0 -4524
- /data/sorbet/rbi/gems/{io-console@0.6.0.rbi → io-console@0.7.2.rbi} +0 -0
- /data/sorbet/rbi/gems/{reline@0.3.3.rbi → reline@0.4.2.rbi} +0 -0
- /data/sorbet/rbi/gems/{unicode-display_width@2.4.2.rbi → unicode-display_width@2.5.0.rbi} +0 -0
@@ -275,7 +275,7 @@ class RuboCop::AST::BlockNode < ::RuboCop::AST::Node
|
|
275
275
|
#
|
276
276
|
# @return [Array<Node>]
|
277
277
|
#
|
278
|
-
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#
|
278
|
+
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#60
|
279
279
|
def argument_list; end
|
280
280
|
|
281
281
|
# The arguments of this block.
|
@@ -285,63 +285,81 @@ class RuboCop::AST::BlockNode < ::RuboCop::AST::Node
|
|
285
285
|
#
|
286
286
|
# @return [Array<Node>]
|
287
287
|
#
|
288
|
-
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#
|
288
|
+
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#48
|
289
289
|
def arguments; end
|
290
290
|
|
291
291
|
# Checks whether this block takes any arguments.
|
292
292
|
#
|
293
293
|
# @return [Boolean] whether this `block` node takes any arguments
|
294
294
|
#
|
295
|
-
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#
|
295
|
+
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#85
|
296
296
|
def arguments?; end
|
297
297
|
|
298
298
|
# The body of this block.
|
299
299
|
#
|
300
300
|
# @return [Node, nil] the body of the `block` node or `nil`
|
301
301
|
#
|
302
|
-
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#
|
302
|
+
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#71
|
303
303
|
def body; end
|
304
304
|
|
305
305
|
# Checks whether the `block` literal is delimited by curly braces.
|
306
306
|
#
|
307
307
|
# @return [Boolean] whether the `block` literal is enclosed in braces
|
308
308
|
#
|
309
|
-
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#
|
309
|
+
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#92
|
310
310
|
def braces?; end
|
311
311
|
|
312
312
|
# The closing delimiter for this `block` literal.
|
313
313
|
#
|
314
314
|
# @return [String] the closing delimiter for the `block` literal
|
315
315
|
#
|
316
|
-
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#
|
316
|
+
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#120
|
317
317
|
def closing_delimiter; end
|
318
318
|
|
319
319
|
# The delimiters for this `block` literal.
|
320
320
|
#
|
321
321
|
# @return [Array<String>] the delimiters for the `block` literal
|
322
322
|
#
|
323
|
-
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#
|
323
|
+
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#106
|
324
324
|
def delimiters; end
|
325
325
|
|
326
|
+
# A shorthand for getting the first argument of this block.
|
327
|
+
# Equivalent to `arguments.first`.
|
328
|
+
#
|
329
|
+
# @return [Node, nil] the first argument of this block,
|
330
|
+
# or `nil` if there are no arguments
|
331
|
+
#
|
332
|
+
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#29
|
333
|
+
def first_argument; end
|
334
|
+
|
326
335
|
# Checks whether the `block` literal is delimited by `do`-`end` keywords.
|
327
336
|
#
|
328
337
|
# @return [Boolean] whether the `block` literal is enclosed in `do`-`end`
|
329
338
|
#
|
330
|
-
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#
|
339
|
+
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#99
|
331
340
|
def keywords?; end
|
332
341
|
|
333
342
|
# Checks whether this `block` literal belongs to a lambda.
|
334
343
|
#
|
335
344
|
# @return [Boolean] whether the `block` literal belongs to a lambda
|
336
345
|
#
|
337
|
-
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#
|
346
|
+
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#143
|
338
347
|
def lambda?; end
|
339
348
|
|
349
|
+
# A shorthand for getting the last argument of this block.
|
350
|
+
# Equivalent to `arguments.last`.
|
351
|
+
#
|
352
|
+
# @return [Node, nil] the last argument of this block,
|
353
|
+
# or `nil` if there are no arguments
|
354
|
+
#
|
355
|
+
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#38
|
356
|
+
def last_argument; end
|
357
|
+
|
340
358
|
# The name of the dispatched method as a symbol.
|
341
359
|
#
|
342
360
|
# @return [Symbol] the name of the dispatched method
|
343
361
|
#
|
344
|
-
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#
|
362
|
+
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#78
|
345
363
|
def method_name; end
|
346
364
|
|
347
365
|
# Checks whether this is a multiline block. This is overridden here
|
@@ -349,14 +367,14 @@ class RuboCop::AST::BlockNode < ::RuboCop::AST::Node
|
|
349
367
|
#
|
350
368
|
# @return [Boolean] whether the `block` literal is on a several lines
|
351
369
|
#
|
352
|
-
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#
|
370
|
+
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#136
|
353
371
|
def multiline?; end
|
354
372
|
|
355
373
|
# The opening delimiter for this `block` literal.
|
356
374
|
#
|
357
375
|
# @return [String] the opening delimiter for the `block` literal
|
358
376
|
#
|
359
|
-
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#
|
377
|
+
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#113
|
360
378
|
def opening_delimiter; end
|
361
379
|
|
362
380
|
# The `send` node associated with this block.
|
@@ -371,21 +389,21 @@ class RuboCop::AST::BlockNode < ::RuboCop::AST::Node
|
|
371
389
|
#
|
372
390
|
# @return [Boolean] whether the `block` literal is on a single line
|
373
391
|
#
|
374
|
-
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#
|
392
|
+
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#128
|
375
393
|
def single_line?; end
|
376
394
|
|
377
395
|
# Checks whether this node body is a void context.
|
378
396
|
#
|
379
397
|
# @return [Boolean] whether the `block` node body is a void context
|
380
398
|
#
|
381
|
-
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#
|
399
|
+
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#150
|
382
400
|
def void_context?; end
|
383
401
|
|
384
402
|
private
|
385
403
|
|
386
404
|
# Numbered arguments of this `numblock`.
|
387
405
|
#
|
388
|
-
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#
|
406
|
+
# source://rubocop-ast//lib/rubocop/ast/node/block_node.rb#157
|
389
407
|
def numbered_arguments; end
|
390
408
|
end
|
391
409
|
|
@@ -1716,7 +1734,7 @@ class RuboCop::AST::IfNode < ::RuboCop::AST::Node
|
|
1716
1734
|
# source://rubocop-ast//lib/rubocop/ast/node/if_node.rb#80
|
1717
1735
|
def modifier_form?; end
|
1718
1736
|
|
1719
|
-
#
|
1737
|
+
# Checks whether the `if` node has nested `if` nodes in any of its
|
1720
1738
|
# branches.
|
1721
1739
|
#
|
1722
1740
|
# @note This performs a shallow search.
|
@@ -2033,10 +2051,10 @@ module RuboCop::AST::MethodDispatchNode
|
|
2033
2051
|
#
|
2034
2052
|
# @return [Boolean] whether the dispatched method is an access modifier
|
2035
2053
|
#
|
2036
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2054
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#64
|
2037
2055
|
def access_modifier?; end
|
2038
2056
|
|
2039
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2057
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#273
|
2040
2058
|
def adjacent_def_modifier?(param0 = T.unsafe(nil)); end
|
2041
2059
|
|
2042
2060
|
# Checks whether this node is an arithmetic operation
|
@@ -2044,14 +2062,14 @@ module RuboCop::AST::MethodDispatchNode
|
|
2044
2062
|
# @return [Boolean] whether the dispatched method is an arithmetic
|
2045
2063
|
# operation
|
2046
2064
|
#
|
2047
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2065
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#175
|
2048
2066
|
def arithmetic_operation?; end
|
2049
2067
|
|
2050
2068
|
# Checks whether the dispatched method is a setter method.
|
2051
2069
|
#
|
2052
2070
|
# @return [Boolean] whether the dispatched method is a setter
|
2053
2071
|
#
|
2054
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2072
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#107
|
2055
2073
|
def assignment?; end
|
2056
2074
|
|
2057
2075
|
# Checks whether the dispatched method is a bare access modifier that
|
@@ -2060,10 +2078,10 @@ module RuboCop::AST::MethodDispatchNode
|
|
2060
2078
|
# @return [Boolean] whether the dispatched method is a bare
|
2061
2079
|
# access modifier
|
2062
2080
|
#
|
2063
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2081
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#73
|
2064
2082
|
def bare_access_modifier?; end
|
2065
2083
|
|
2066
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2084
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#278
|
2067
2085
|
def bare_access_modifier_declaration?(param0 = T.unsafe(nil)); end
|
2068
2086
|
|
2069
2087
|
# Checks whether this is a binary operation.
|
@@ -2073,14 +2091,14 @@ module RuboCop::AST::MethodDispatchNode
|
|
2073
2091
|
# foo + bar
|
2074
2092
|
# @return [Boolean] whether this method is a binary operation
|
2075
2093
|
#
|
2076
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2094
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#248
|
2077
2095
|
def binary_operation?; end
|
2078
2096
|
|
2079
2097
|
# Whether this method dispatch has an explicit block.
|
2080
2098
|
#
|
2081
2099
|
# @return [Boolean] whether the dispatched method has a block
|
2082
2100
|
#
|
2083
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2101
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#167
|
2084
2102
|
def block_literal?; end
|
2085
2103
|
|
2086
2104
|
# The `block` or `numblock` node associated with this method dispatch, if any.
|
@@ -2088,7 +2106,7 @@ module RuboCop::AST::MethodDispatchNode
|
|
2088
2106
|
# @return [BlockNode, nil] the `block` or `numblock` node associated with this method
|
2089
2107
|
# call or `nil`
|
2090
2108
|
#
|
2091
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2109
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#46
|
2092
2110
|
def block_node; end
|
2093
2111
|
|
2094
2112
|
# Checks whether the name of the dispatched method matches the argument
|
@@ -2097,7 +2115,7 @@ module RuboCop::AST::MethodDispatchNode
|
|
2097
2115
|
# @param name [Symbol, String] the method name to check for
|
2098
2116
|
# @return [Boolean] whether the method name matches the argument
|
2099
2117
|
#
|
2100
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2118
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#100
|
2101
2119
|
def command?(name); end
|
2102
2120
|
|
2103
2121
|
# Checks whether the *explicit* receiver of this method dispatch is a
|
@@ -2106,7 +2124,7 @@ module RuboCop::AST::MethodDispatchNode
|
|
2106
2124
|
# @return [Boolean] whether the receiver of this method dispatch
|
2107
2125
|
# is a `const` node
|
2108
2126
|
#
|
2109
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2127
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#152
|
2110
2128
|
def const_receiver?; end
|
2111
2129
|
|
2112
2130
|
# Checks if this node is part of a chain of `def` or `defs` modifiers.
|
@@ -2118,7 +2136,7 @@ module RuboCop::AST::MethodDispatchNode
|
|
2118
2136
|
# private def foo; end
|
2119
2137
|
# @return [Node | nil] returns the `def|defs` node this is a modifier for,
|
2120
2138
|
#
|
2121
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2139
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#199
|
2122
2140
|
def def_modifier(node = T.unsafe(nil)); end
|
2123
2141
|
|
2124
2142
|
# Checks if this node is part of a chain of `def` or `defs` modifiers.
|
@@ -2130,7 +2148,7 @@ module RuboCop::AST::MethodDispatchNode
|
|
2130
2148
|
# private def foo; end
|
2131
2149
|
# @return [Boolean] whether the `def|defs` node is a modifier or not.
|
2132
2150
|
#
|
2133
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2151
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#187
|
2134
2152
|
def def_modifier?(node = T.unsafe(nil)); end
|
2135
2153
|
|
2136
2154
|
# Checks whether the dispatched method uses a dot to connect the
|
@@ -2141,7 +2159,7 @@ module RuboCop::AST::MethodDispatchNode
|
|
2141
2159
|
#
|
2142
2160
|
# @return [Boolean] whether the method was called with a connecting dot
|
2143
2161
|
#
|
2144
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2162
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#119
|
2145
2163
|
def dot?; end
|
2146
2164
|
|
2147
2165
|
# Checks whether the dispatched method uses a double colon to connect the
|
@@ -2149,7 +2167,7 @@ module RuboCop::AST::MethodDispatchNode
|
|
2149
2167
|
#
|
2150
2168
|
# @return [Boolean] whether the method was called with a connecting dot
|
2151
2169
|
#
|
2152
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2170
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#127
|
2153
2171
|
def double_colon?; end
|
2154
2172
|
|
2155
2173
|
# Checks whether the method dispatch is the implicit form of `#call`,
|
@@ -2157,10 +2175,10 @@ module RuboCop::AST::MethodDispatchNode
|
|
2157
2175
|
#
|
2158
2176
|
# @return [Boolean] whether the method is the implicit form of `#call`
|
2159
2177
|
#
|
2160
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2178
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#160
|
2161
2179
|
def implicit_call?; end
|
2162
2180
|
|
2163
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2181
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#257
|
2164
2182
|
def in_macro_scope?(param0 = T.unsafe(nil)); end
|
2165
2183
|
|
2166
2184
|
# Checks whether this is a lambda. Some versions of parser parses
|
@@ -2168,7 +2186,7 @@ module RuboCop::AST::MethodDispatchNode
|
|
2168
2186
|
#
|
2169
2187
|
# @return [Boolean] whether this method is a lambda
|
2170
2188
|
#
|
2171
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2189
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#213
|
2172
2190
|
def lambda?; end
|
2173
2191
|
|
2174
2192
|
# Checks whether this is a lambda literal (stabby lambda.)
|
@@ -2178,7 +2196,7 @@ module RuboCop::AST::MethodDispatchNode
|
|
2178
2196
|
# -> (foo) { bar }
|
2179
2197
|
# @return [Boolean] whether this method is a lambda literal
|
2180
2198
|
#
|
2181
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2199
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#224
|
2182
2200
|
def lambda_literal?; end
|
2183
2201
|
|
2184
2202
|
# Checks whether the dispatched method is a macro method. A macro method
|
@@ -2188,7 +2206,7 @@ module RuboCop::AST::MethodDispatchNode
|
|
2188
2206
|
# @note This does not include DSLs that use nested blocks, like RSpec
|
2189
2207
|
# @return [Boolean] whether the dispatched method is a macro method
|
2190
2208
|
#
|
2191
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2209
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#57
|
2192
2210
|
def macro?; end
|
2193
2211
|
|
2194
2212
|
# The name of the dispatched method as a symbol.
|
@@ -2204,10 +2222,10 @@ module RuboCop::AST::MethodDispatchNode
|
|
2204
2222
|
# @return [Boolean] whether the dispatched method is a non-bare
|
2205
2223
|
# access modifier
|
2206
2224
|
#
|
2207
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2225
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#82
|
2208
2226
|
def non_bare_access_modifier?; end
|
2209
2227
|
|
2210
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2228
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#283
|
2211
2229
|
def non_bare_access_modifier_declaration?(param0 = T.unsafe(nil)); end
|
2212
2230
|
|
2213
2231
|
# The receiving node of the method dispatch.
|
@@ -2222,22 +2240,29 @@ module RuboCop::AST::MethodDispatchNode
|
|
2222
2240
|
#
|
2223
2241
|
# @return [Boolean] whether the method was called with a connecting dot
|
2224
2242
|
#
|
2225
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2243
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#135
|
2226
2244
|
def safe_navigation?; end
|
2227
2245
|
|
2246
|
+
# The source range for the method name or keyword that dispatches this call.
|
2247
|
+
#
|
2248
|
+
# @return [Parser::Source::Range] the source range for the method name or keyword
|
2249
|
+
#
|
2250
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#34
|
2251
|
+
def selector; end
|
2252
|
+
|
2228
2253
|
# Checks whether the *explicit* receiver of this method dispatch is
|
2229
2254
|
# `self`.
|
2230
2255
|
#
|
2231
2256
|
# @return [Boolean] whether the receiver of this method dispatch is `self`
|
2232
2257
|
#
|
2233
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2258
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#143
|
2234
2259
|
def self_receiver?; end
|
2235
2260
|
|
2236
2261
|
# Checks whether the dispatched method is a setter method.
|
2237
2262
|
#
|
2238
2263
|
# @return [Boolean] whether the dispatched method is a setter
|
2239
2264
|
#
|
2240
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2265
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#107
|
2241
2266
|
def setter_method?; end
|
2242
2267
|
|
2243
2268
|
# Checks whether the dispatched method is a bare `private` or `protected`
|
@@ -2246,7 +2271,7 @@ module RuboCop::AST::MethodDispatchNode
|
|
2246
2271
|
# @return [Boolean] whether the dispatched method is a bare
|
2247
2272
|
# `private` or `protected` access modifier
|
2248
2273
|
#
|
2249
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2274
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#91
|
2250
2275
|
def special_modifier?; end
|
2251
2276
|
|
2252
2277
|
# Checks whether this is a unary operation.
|
@@ -2256,7 +2281,7 @@ module RuboCop::AST::MethodDispatchNode
|
|
2256
2281
|
# -foo
|
2257
2282
|
# @return [Boolean] whether this method is a unary operation
|
2258
2283
|
#
|
2259
|
-
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#
|
2284
|
+
# source://rubocop-ast//lib/rubocop/ast/node/mixin/method_dispatch_node.rb#235
|
2260
2285
|
def unary_operation?; end
|
2261
2286
|
end
|
2262
2287
|
|
@@ -4816,116 +4841,116 @@ class RuboCop::AST::NodePattern::Parser < ::Racc::Parser
|
|
4816
4841
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.rb#19
|
4817
4842
|
def initialize(builder = T.unsafe(nil)); end
|
4818
4843
|
|
4819
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4844
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#335
|
4820
4845
|
def _reduce_10(val, _values); end
|
4821
4846
|
|
4822
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4847
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#339
|
4823
4848
|
def _reduce_11(val, _values); end
|
4824
4849
|
|
4825
4850
|
# reduce 12 omitted
|
4826
4851
|
#
|
4827
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4852
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#345
|
4828
4853
|
def _reduce_13(val, _values); end
|
4829
4854
|
|
4830
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4855
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#349
|
4831
4856
|
def _reduce_14(val, _values); end
|
4832
4857
|
|
4833
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4858
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#353
|
4834
4859
|
def _reduce_15(val, _values); end
|
4835
4860
|
|
4836
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4861
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#357
|
4837
4862
|
def _reduce_16(val, _values); end
|
4838
4863
|
|
4839
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4864
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#361
|
4840
4865
|
def _reduce_17(val, _values); end
|
4841
4866
|
|
4842
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4867
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#365
|
4843
4868
|
def _reduce_18(val, _values); end
|
4844
4869
|
|
4845
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4870
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#369
|
4846
4871
|
def _reduce_19(val, _values); end
|
4847
4872
|
|
4848
4873
|
# reduce 1 omitted
|
4849
4874
|
#
|
4850
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4875
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#303
|
4851
4876
|
def _reduce_2(val, _values); end
|
4852
4877
|
|
4853
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4878
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#373
|
4854
4879
|
def _reduce_20(val, _values); end
|
4855
4880
|
|
4856
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4881
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#377
|
4857
4882
|
def _reduce_21(val, _values); end
|
4858
4883
|
|
4859
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4884
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#381
|
4860
4885
|
def _reduce_22(val, _values); end
|
4861
4886
|
|
4862
4887
|
# reduce 24 omitted
|
4863
4888
|
#
|
4864
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4889
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#389
|
4865
4890
|
def _reduce_25(val, _values); end
|
4866
4891
|
|
4867
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4892
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#395
|
4868
4893
|
def _reduce_26(val, _values); end
|
4869
4894
|
|
4870
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4895
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#307
|
4871
4896
|
def _reduce_3(val, _values); end
|
4872
4897
|
|
4873
4898
|
# reduce 32 omitted
|
4874
4899
|
#
|
4875
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4900
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#415
|
4876
4901
|
def _reduce_33(val, _values); end
|
4877
4902
|
|
4878
4903
|
# reduce 36 omitted
|
4879
4904
|
#
|
4880
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4905
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#425
|
4881
4906
|
def _reduce_37(val, _values); end
|
4882
4907
|
|
4883
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4908
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#429
|
4884
4909
|
def _reduce_38(val, _values); end
|
4885
4910
|
|
4886
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4911
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#433
|
4887
4912
|
def _reduce_39(val, _values); end
|
4888
4913
|
|
4889
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4914
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#311
|
4890
4915
|
def _reduce_4(val, _values); end
|
4891
4916
|
|
4892
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4917
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#437
|
4893
4918
|
def _reduce_40(val, _values); end
|
4894
4919
|
|
4895
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4920
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#441
|
4896
4921
|
def _reduce_41(val, _values); end
|
4897
4922
|
|
4898
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4923
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#445
|
4899
4924
|
def _reduce_42(val, _values); end
|
4900
4925
|
|
4901
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4926
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#449
|
4902
4927
|
def _reduce_43(val, _values); end
|
4903
4928
|
|
4904
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4929
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#453
|
4905
4930
|
def _reduce_44(val, _values); end
|
4906
4931
|
|
4907
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4932
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#457
|
4908
4933
|
def _reduce_45(val, _values); end
|
4909
4934
|
|
4910
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4935
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#461
|
4911
4936
|
def _reduce_46(val, _values); end
|
4912
4937
|
|
4913
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4938
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#315
|
4914
4939
|
def _reduce_5(val, _values); end
|
4915
4940
|
|
4916
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4941
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#319
|
4917
4942
|
def _reduce_6(val, _values); end
|
4918
4943
|
|
4919
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4944
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#323
|
4920
4945
|
def _reduce_7(val, _values); end
|
4921
4946
|
|
4922
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4947
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#327
|
4923
4948
|
def _reduce_8(val, _values); end
|
4924
4949
|
|
4925
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4950
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#331
|
4926
4951
|
def _reduce_9(val, _values); end
|
4927
4952
|
|
4928
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
4953
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#465
|
4929
4954
|
def _reduce_none(val, _values); end
|
4930
4955
|
|
4931
4956
|
# source://forwardable/1.3.3/forwardable.rb#231
|
@@ -4985,10 +5010,10 @@ RuboCop::AST::NodePattern::Parser::Lexer = RuboCop::AST::NodePattern::Lexer
|
|
4985
5010
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#227
|
4986
5011
|
RuboCop::AST::NodePattern::Parser::Racc_arg = T.let(T.unsafe(nil), Array)
|
4987
5012
|
|
4988
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
5013
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#295
|
4989
5014
|
RuboCop::AST::NodePattern::Parser::Racc_debug_parser = T.let(T.unsafe(nil), FalseClass)
|
4990
5015
|
|
4991
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#
|
5016
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/parser.racc.rb#244
|
4992
5017
|
RuboCop::AST::NodePattern::Parser::Racc_token_to_s_table = T.let(T.unsafe(nil), Array)
|
4993
5018
|
|
4994
5019
|
# Overrides Parser to use `WithMeta` variants and provide additional methods
|
@@ -5091,6 +5116,9 @@ RuboCop::AST::NodePattern::Sets::REGISTRY = T.let(T.unsafe(nil), Hash)
|
|
5091
5116
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5092
5117
|
RuboCop::AST::NodePattern::Sets::SET_0_1 = T.let(T.unsafe(nil), Set)
|
5093
5118
|
|
5119
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5120
|
+
RuboCop::AST::NodePattern::Sets::SET_0_1_2 = T.let(T.unsafe(nil), Set)
|
5121
|
+
|
5094
5122
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5095
5123
|
RuboCop::AST::NodePattern::Sets::SET_10_10 = T.let(T.unsafe(nil), Set)
|
5096
5124
|
|
@@ -5104,11 +5132,14 @@ RuboCop::AST::NodePattern::Sets::SET_ABSTRACT_OVERRIDE_OVERRIDABLE_ETC = T.let(T
|
|
5104
5132
|
RuboCop::AST::NodePattern::Sets::SET_ADD_DEPENDENCY_ADD_RUNTIME_DEPENDENCY_ADD_DEVELOPMENT_DEPENDENCY = T.let(T.unsafe(nil), Set)
|
5105
5133
|
|
5106
5134
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5107
|
-
RuboCop::AST::NodePattern::Sets::
|
5135
|
+
RuboCop::AST::NodePattern::Sets::SET_ALL_ANY_CLASS_OF_ETC = T.let(T.unsafe(nil), Set)
|
5108
5136
|
|
5109
5137
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5110
5138
|
RuboCop::AST::NodePattern::Sets::SET_ANY_EMPTY = T.let(T.unsafe(nil), Set)
|
5111
5139
|
|
5140
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5141
|
+
RuboCop::AST::NodePattern::Sets::SET_ANY_EMPTY_NONE_ETC = T.let(T.unsafe(nil), Set)
|
5142
|
+
|
5112
5143
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5113
5144
|
RuboCop::AST::NodePattern::Sets::SET_ATTR_READER_ATTR_WRITER_ATTR_ACCESSOR = T.let(T.unsafe(nil), Set)
|
5114
5145
|
|
@@ -5118,6 +5149,9 @@ RuboCop::AST::NodePattern::Sets::SET_ATTR_READER_ATTR_WRITER_ATTR_ACCESSOR_ATTR
|
|
5118
5149
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5119
5150
|
RuboCop::AST::NodePattern::Sets::SET_BRANCH_REF_TAG = T.let(T.unsafe(nil), Set)
|
5120
5151
|
|
5152
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5153
|
+
RuboCop::AST::NodePattern::Sets::SET_CALLER_CALLER_LOCATIONS = T.let(T.unsafe(nil), Set)
|
5154
|
+
|
5121
5155
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5122
5156
|
RuboCop::AST::NodePattern::Sets::SET_CAPTURE2_CAPTURE2E_CAPTURE3_ETC = T.let(T.unsafe(nil), Set)
|
5123
5157
|
|
@@ -5151,6 +5185,9 @@ RuboCop::AST::NodePattern::Sets::SET_DEFINE_METHOD = T.let(T.unsafe(nil), Set)
|
|
5151
5185
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5152
5186
|
RuboCop::AST::NodePattern::Sets::SET_DEFINE_METHOD_DEFINE_SINGLETON_METHOD = T.let(T.unsafe(nil), Set)
|
5153
5187
|
|
5188
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5189
|
+
RuboCop::AST::NodePattern::Sets::SET_DOWNCASE_UPCASE = T.let(T.unsafe(nil), Set)
|
5190
|
+
|
5154
5191
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5155
5192
|
RuboCop::AST::NodePattern::Sets::SET_EACH_WITH_INDEX_WITH_INDEX = T.let(T.unsafe(nil), Set)
|
5156
5193
|
|
@@ -5175,6 +5212,9 @@ RuboCop::AST::NodePattern::Sets::SET_FILE_DIR = T.let(T.unsafe(nil), Set)
|
|
5175
5212
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5176
5213
|
RuboCop::AST::NodePattern::Sets::SET_FILE_FILETEST = T.let(T.unsafe(nil), Set)
|
5177
5214
|
|
5215
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5216
|
+
RuboCop::AST::NodePattern::Sets::SET_FILE_TEMPFILE = T.let(T.unsafe(nil), Set)
|
5217
|
+
|
5178
5218
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5179
5219
|
RuboCop::AST::NodePattern::Sets::SET_FILE_TEMPFILE_STRINGIO = T.let(T.unsafe(nil), Set)
|
5180
5220
|
|
@@ -5184,6 +5224,9 @@ RuboCop::AST::NodePattern::Sets::SET_FIRST_LAST__ETC = T.let(T.unsafe(nil), Set)
|
|
5184
5224
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5185
5225
|
RuboCop::AST::NodePattern::Sets::SET_FIXNUM_BIGNUM = T.let(T.unsafe(nil), Set)
|
5186
5226
|
|
5227
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5228
|
+
RuboCop::AST::NodePattern::Sets::SET_FLATTEN_FLATTEN = T.let(T.unsafe(nil), Set)
|
5229
|
+
|
5187
5230
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5188
5231
|
RuboCop::AST::NodePattern::Sets::SET_FORMAT_SPRINTF_PRINTF = T.let(T.unsafe(nil), Set)
|
5189
5232
|
|
@@ -5193,15 +5236,24 @@ RuboCop::AST::NodePattern::Sets::SET_GETHOSTBYADDR_GETHOSTBYNAME = T.let(T.unsaf
|
|
5193
5236
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5194
5237
|
RuboCop::AST::NodePattern::Sets::SET_GSUB_GSUB = T.let(T.unsafe(nil), Set)
|
5195
5238
|
|
5239
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5240
|
+
RuboCop::AST::NodePattern::Sets::SET_GSUB_GSUB_SUB_SUB = T.let(T.unsafe(nil), Set)
|
5241
|
+
|
5196
5242
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5197
5243
|
RuboCop::AST::NodePattern::Sets::SET_INCLUDE_EXTEND_PREPEND = T.let(T.unsafe(nil), Set)
|
5198
5244
|
|
5245
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5246
|
+
RuboCop::AST::NodePattern::Sets::SET_INCLUDE_MEMBER = T.let(T.unsafe(nil), Set)
|
5247
|
+
|
5199
5248
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5200
5249
|
RuboCop::AST::NodePattern::Sets::SET_INSTANCE_EVAL_CLASS_EVAL_MODULE_EVAL = T.let(T.unsafe(nil), Set)
|
5201
5250
|
|
5202
5251
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5203
5252
|
RuboCop::AST::NodePattern::Sets::SET_INSTANCE_EXEC_CLASS_EXEC_MODULE_EXEC = T.let(T.unsafe(nil), Set)
|
5204
5253
|
|
5254
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5255
|
+
RuboCop::AST::NodePattern::Sets::SET_IO_FILE = T.let(T.unsafe(nil), Set)
|
5256
|
+
|
5205
5257
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5206
5258
|
RuboCop::AST::NodePattern::Sets::SET_KEYS_VALUES = T.let(T.unsafe(nil), Set)
|
5207
5259
|
|
@@ -5220,12 +5272,27 @@ RuboCop::AST::NodePattern::Sets::SET_LOAD_RESTORE = T.let(T.unsafe(nil), Set)
|
|
5220
5272
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5221
5273
|
RuboCop::AST::NodePattern::Sets::SET_MAP_COLLECT = T.let(T.unsafe(nil), Set)
|
5222
5274
|
|
5275
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5276
|
+
RuboCop::AST::NodePattern::Sets::SET_MATCH_MATCH = T.let(T.unsafe(nil), Set)
|
5277
|
+
|
5278
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5279
|
+
RuboCop::AST::NodePattern::Sets::SET_MATCH_MATCH_ = T.let(T.unsafe(nil), Set)
|
5280
|
+
|
5281
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5282
|
+
RuboCop::AST::NodePattern::Sets::SET_MATCH_MATCH__2 = T.let(T.unsafe(nil), Set)
|
5283
|
+
|
5284
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5285
|
+
RuboCop::AST::NodePattern::Sets::SET_MATCH___MATCH = T.let(T.unsafe(nil), Set)
|
5286
|
+
|
5223
5287
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5224
5288
|
RuboCop::AST::NodePattern::Sets::SET_MODULE_FUNCTION_RUBY2_KEYWORDS = T.let(T.unsafe(nil), Set)
|
5225
5289
|
|
5226
5290
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5227
5291
|
RuboCop::AST::NodePattern::Sets::SET_NEW_ = T.let(T.unsafe(nil), Set)
|
5228
5292
|
|
5293
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5294
|
+
RuboCop::AST::NodePattern::Sets::SET_NEW_COMPILE = T.let(T.unsafe(nil), Set)
|
5295
|
+
|
5229
5296
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5230
5297
|
RuboCop::AST::NodePattern::Sets::SET_NEW_OPEN = T.let(T.unsafe(nil), Set)
|
5231
5298
|
|
@@ -5239,7 +5306,7 @@ RuboCop::AST::NodePattern::Sets::SET_PIPELINE_PIPELINE_R_PIPELINE_RW_ETC = T.let
|
|
5239
5306
|
RuboCop::AST::NodePattern::Sets::SET_PRESENT_ANY_BLANK_EMPTY = T.let(T.unsafe(nil), Set)
|
5240
5307
|
|
5241
5308
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5242
|
-
RuboCop::AST::NodePattern::Sets::
|
5309
|
+
RuboCop::AST::NodePattern::Sets::SET_PRIVATE_PROTECTED_PRIVATE_CLASS_METHOD = T.let(T.unsafe(nil), Set)
|
5243
5310
|
|
5244
5311
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5245
5312
|
RuboCop::AST::NodePattern::Sets::SET_PRIVATE_PROTECTED_PUBLIC = T.let(T.unsafe(nil), Set)
|
@@ -5271,24 +5338,48 @@ RuboCop::AST::NodePattern::Sets::SET_REJECT_DELETE_IF_REJECT = T.let(T.unsafe(ni
|
|
5271
5338
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5272
5339
|
RuboCop::AST::NodePattern::Sets::SET_REQUIRE_REQUIRE_RELATIVE = T.let(T.unsafe(nil), Set)
|
5273
5340
|
|
5341
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5342
|
+
RuboCop::AST::NodePattern::Sets::SET_SELECT_FILTER_FIND_ALL = T.let(T.unsafe(nil), Set)
|
5343
|
+
|
5344
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5345
|
+
RuboCop::AST::NodePattern::Sets::SET_SELECT_FILTER_FIND_ALL_REJECT = T.let(T.unsafe(nil), Set)
|
5346
|
+
|
5274
5347
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5275
5348
|
RuboCop::AST::NodePattern::Sets::SET_SELECT_SELECT = T.let(T.unsafe(nil), Set)
|
5276
5349
|
|
5277
5350
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5278
5351
|
RuboCop::AST::NodePattern::Sets::SET_SEND_PUBLIC_SEND___SEND__ = T.let(T.unsafe(nil), Set)
|
5279
5352
|
|
5353
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5354
|
+
RuboCop::AST::NodePattern::Sets::SET_SIG_HELPERS = T.let(T.unsafe(nil), Set)
|
5355
|
+
|
5280
5356
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5281
5357
|
RuboCop::AST::NodePattern::Sets::SET_SORT_BY_SORT = T.let(T.unsafe(nil), Set)
|
5282
5358
|
|
5359
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5360
|
+
RuboCop::AST::NodePattern::Sets::SET_SORT_SORT_MIN_ETC = T.let(T.unsafe(nil), Set)
|
5361
|
+
|
5283
5362
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5284
5363
|
RuboCop::AST::NodePattern::Sets::SET_SPAWN_SYSTEM = T.let(T.unsafe(nil), Set)
|
5285
5364
|
|
5286
5365
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5287
5366
|
RuboCop::AST::NodePattern::Sets::SET_SPRINTF_FORMAT = T.let(T.unsafe(nil), Set)
|
5288
5367
|
|
5368
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5369
|
+
RuboCop::AST::NodePattern::Sets::SET_START_WITH_END_WITH = T.let(T.unsafe(nil), Set)
|
5370
|
+
|
5371
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5372
|
+
RuboCop::AST::NodePattern::Sets::SET_START_WITH_STARTS_WITH_END_WITH_ENDS_WITH = T.let(T.unsafe(nil), Set)
|
5373
|
+
|
5289
5374
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5290
5375
|
RuboCop::AST::NodePattern::Sets::SET_STRUCT_CLASS = T.let(T.unsafe(nil), Set)
|
5291
5376
|
|
5377
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5378
|
+
RuboCop::AST::NodePattern::Sets::SET_STRUCT_IMMUTABLESTRUCT = T.let(T.unsafe(nil), Set)
|
5379
|
+
|
5380
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5381
|
+
RuboCop::AST::NodePattern::Sets::SET_STRUCT_IMMUTABLESTRUCT_INEXACTSTRUCT = T.let(T.unsafe(nil), Set)
|
5382
|
+
|
5292
5383
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5293
5384
|
RuboCop::AST::NodePattern::Sets::SET_SUCC_PRED_NEXT = T.let(T.unsafe(nil), Set)
|
5294
5385
|
|
@@ -5307,9 +5398,6 @@ RuboCop::AST::NodePattern::Sets::SET_TO_I_TO_F_TO_C_TO_R = T.let(T.unsafe(nil),
|
|
5307
5398
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5308
5399
|
RuboCop::AST::NodePattern::Sets::SET_TRUE_FALSE = T.let(T.unsafe(nil), Set)
|
5309
5400
|
|
5310
|
-
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5311
|
-
RuboCop::AST::NodePattern::Sets::SET_TYPE_TEMPLATE_TYPE_MEMBER = T.let(T.unsafe(nil), Set)
|
5312
|
-
|
5313
5401
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5314
5402
|
RuboCop::AST::NodePattern::Sets::SET_ZERO_POSITIVE_NEGATIVE = T.let(T.unsafe(nil), Set)
|
5315
5403
|
|
@@ -5319,6 +5407,9 @@ RuboCop::AST::NodePattern::Sets::SET__ = T.let(T.unsafe(nil), Set)
|
|
5319
5407
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5320
5408
|
RuboCop::AST::NodePattern::Sets::SET__AT_SLICE = T.let(T.unsafe(nil), Set)
|
5321
5409
|
|
5410
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5411
|
+
RuboCop::AST::NodePattern::Sets::SET__EQL_ = T.let(T.unsafe(nil), Set)
|
5412
|
+
|
5322
5413
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5323
5414
|
RuboCop::AST::NodePattern::Sets::SET__EQUAL_EQL = T.let(T.unsafe(nil), Set)
|
5324
5415
|
|
@@ -5367,6 +5458,9 @@ RuboCop::AST::NodePattern::Sets::SET___METHOD_____CALLEE__ = T.let(T.unsafe(nil)
|
|
5367
5458
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5368
5459
|
RuboCop::AST::NodePattern::Sets::SET____ = T.let(T.unsafe(nil), Set)
|
5369
5460
|
|
5461
|
+
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5462
|
+
RuboCop::AST::NodePattern::Sets::SET____2 = T.let(T.unsafe(nil), Set)
|
5463
|
+
|
5370
5464
|
# source://rubocop-ast//lib/rubocop/ast/node_pattern/sets.rb#10
|
5371
5465
|
RuboCop::AST::NodePattern::Sets::SET____ETC = T.let(T.unsafe(nil), Set)
|
5372
5466
|
|