spoom 1.3.1 → 1.3.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/spoom/deadcode/remover.rb +7 -3
- data/lib/spoom/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: bf02e50bf4a9482c7895022115de973e0be60b79cf781760cb8e6ecb48013eaf
|
4
|
+
data.tar.gz: 73ba081a87afdde5b57672b5a67ca860089506254a1b65fa5309ba28a7014bf3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19c39e380ddc81c38aaaf1b954232a4e068e88b14ad8a4690bb2810b62467578a3e836477c6d0c6db398eeec81a7d212e6b630b070f3b23c9990139a17ca0a60
|
7
|
+
data.tar.gz: ab920946c6ed779638788550f27b5c66ad1c1c21951d6cedc57b0a80fb58d7be094625d55b177e7c5479bfab9e24b733e10ec6f39de0039d3c80c98f45026514
|
@@ -564,7 +564,7 @@ module Spoom
|
|
564
564
|
raise ParserError, "Error while parsing #{location.file}: #{message}"
|
565
565
|
end
|
566
566
|
|
567
|
-
visitor = new(location)
|
567
|
+
visitor = new(location, kind)
|
568
568
|
visitor.visit(result.value)
|
569
569
|
|
570
570
|
node = visitor.node
|
@@ -617,10 +617,11 @@ module Spoom
|
|
617
617
|
sig { returns(T::Array[Prism::Node]) }
|
618
618
|
attr_reader :nodes_nesting
|
619
619
|
|
620
|
-
sig { params(location: Location).void }
|
621
|
-
def initialize(location)
|
620
|
+
sig { params(location: Location, kind: T.nilable(Definition::Kind)).void }
|
621
|
+
def initialize(location, kind)
|
622
622
|
super()
|
623
623
|
@location = location
|
624
|
+
@kind = kind
|
624
625
|
@node = T.let(nil, T.nilable(Prism::Node))
|
625
626
|
@nodes_nesting = T.let([], T::Array[Prism::Node])
|
626
627
|
end
|
@@ -635,6 +636,9 @@ module Spoom
|
|
635
636
|
# We found the node we're looking for at `@location`
|
636
637
|
@node = node
|
637
638
|
|
639
|
+
# The node we found matches the kind we're looking for, we can stop here
|
640
|
+
return if @kind && self.class.node_match_kind?(node, @kind)
|
641
|
+
|
638
642
|
# There may be a more precise child inside the node that also matches `@location`, let's visit them
|
639
643
|
@nodes_nesting << node
|
640
644
|
super(node)
|
data/lib/spoom/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spoom
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexandre Terrasa
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-05-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|