rubocop-ast 1.36.0 → 1.36.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/rubocop/ast/node/ensure_node.rb +0 -13
- data/lib/rubocop/ast/node/mlhs_node.rb +4 -2
- data/lib/rubocop/ast/node.rb +1 -1
- data/lib/rubocop/ast/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 07c76274a87f19afed0f78fd17a51276f0018b7d1771e762135102b4d52b5a5e
|
4
|
+
data.tar.gz: b1e0a8669b789f063b3a73cdddc6187ef65fa80e8af376a898d90003af988370
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 53acbd7b42693e94af37b5ec5e894c77416edabb7a5ad7cb9a4bc82f605dad8b6f324a41a68fe83cfe8227d4421fff4bba77c1b6c33d1234af7972b74a3e6f2f
|
7
|
+
data.tar.gz: d5723bec108faa1d19eff03b0fefb2f8eeefe885253f16180bedbde4589cba16db6dfd45d27bb82a0f14538e9c93416dd23756f0f79fa3d68ae67a7b3ff30c64
|
@@ -6,24 +6,11 @@ module RuboCop
|
|
6
6
|
# node when the builder constructs the AST, making its methods available
|
7
7
|
# to all `ensure` nodes within RuboCop.
|
8
8
|
class EnsureNode < Node
|
9
|
-
DEPRECATION_WARNING_LOCATION_CACHE = [] # rubocop:disable Style/MutableConstant
|
10
|
-
private_constant :DEPRECATION_WARNING_LOCATION_CACHE
|
11
|
-
|
12
9
|
# Returns the body of the `ensure` clause.
|
13
10
|
#
|
14
11
|
# @return [Node, nil] The body of the `ensure`.
|
15
12
|
# @deprecated Use `EnsureNode#branch`
|
16
13
|
def body
|
17
|
-
first_caller = caller(1..1).first
|
18
|
-
|
19
|
-
unless DEPRECATION_WARNING_LOCATION_CACHE.include?(first_caller)
|
20
|
-
warn '`EnsureNode#body` is deprecated and will be changed in the next major version of ' \
|
21
|
-
'rubocop-ast. Use `EnsureNode#branch` instead to get the body of the `ensure` branch.'
|
22
|
-
warn "Called from:\n#{caller.join("\n")}\n\n"
|
23
|
-
|
24
|
-
DEPRECATION_WARNING_LOCATION_CACHE << first_caller
|
25
|
-
end
|
26
|
-
|
27
14
|
branch
|
28
15
|
end
|
29
16
|
|
@@ -8,13 +8,15 @@ module RuboCop
|
|
8
8
|
class MlhsNode < Node
|
9
9
|
# Returns all the assignment nodes on the left hand side (LHS) of a multiple assignment.
|
10
10
|
# These are generally assignment nodes (`lvasgn`, `ivasgn`, `cvasgn`, `gvasgn`, `casgn`)
|
11
|
-
# but can also be `send` nodes in case of `foo.bar, ... =` or `foo[:bar], ...
|
11
|
+
# but can also be `send` nodes in case of `foo.bar, ... =` or `foo[:bar], ... =`,
|
12
|
+
# or a `splat` node for `*, ... =`.
|
12
13
|
#
|
13
14
|
# @return [Array<Node>] the assignment nodes of the multiple assignment LHS
|
14
15
|
def assignments
|
15
16
|
child_nodes.flat_map do |node|
|
16
17
|
if node.splat_type?
|
17
|
-
|
18
|
+
# Anonymous splats have no children
|
19
|
+
node.child_nodes.first || node
|
18
20
|
elsif node.mlhs_type?
|
19
21
|
node.assignments
|
20
22
|
else
|
data/lib/rubocop/ast/node.rb
CHANGED
data/lib/rubocop/ast/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-ast
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.36.
|
4
|
+
version: 1.36.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bozhidar Batsov
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2024-11-
|
13
|
+
date: 2024-11-27 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: parser
|