File tree Expand file tree Collapse file tree 6 files changed +1
-7
lines changed
python-checks/src/main/java/org/sonar/python/checks
python-frontend/src/main/java/org/sonar Expand file tree Collapse file tree 6 files changed +1
-7
lines changed Original file line number Diff line number Diff line change 93
93
<sonar .version>9.9.1.69595</sonar .version>
94
94
<sonar .orchestrator.version>5.0.0.2065</sonar .orchestrator.version>
95
95
<sonar .api.version>10.1.0.809</sonar .api.version>
96
- <sonar-analyzer-commons .version>2.7 .0.1482 </sonar-analyzer-commons .version>
96
+ <sonar-analyzer-commons .version>2.12 .0.2964 </sonar-analyzer-commons .version>
97
97
<sonarlint-core .version>8.18.0.70939</sonarlint-core .version>
98
98
<sslr .version>1.23</sslr .version>
99
99
<protobuf .version>3.25.1</protobuf .version>
Original file line number Diff line number Diff line change 53
53
import org .sonar .plugins .python .api .tree .Tree ;
54
54
import org .sonar .python .api .PythonKeyword ;
55
55
import org .sonar .python .checks .utils .CheckUtils ;
56
- import org .sonar .python .tree .DictCompExpressionImpl ;
57
56
import org .sonar .python .tree .TreeUtils ;
58
57
59
58
@ Rule (key = "S2190" )
Original file line number Diff line number Diff line change 21
21
22
22
import java .util .List ;
23
23
import javax .annotation .Nullable ;
24
- import org .sonar .python .tree .DictCompExpressionImpl ;
25
24
26
25
/**
27
26
* Default implementation of {@link TreeVisitor}.
Original file line number Diff line number Diff line change 19
19
*/
20
20
package org .sonar .plugins .python .api .tree ;
21
21
22
- import org .sonar .python .tree .DictCompExpressionImpl ;
23
-
24
22
public interface TreeVisitor {
25
23
26
24
void visitFileInput (FileInput fileInput );
Original file line number Diff line number Diff line change 31
31
import org .sonar .plugins .python .api .tree .Parameter ;
32
32
import org .sonar .plugins .python .api .tree .Tree ;
33
33
import org .sonar .plugins .python .api .tree .TypeAnnotation ;
34
- import org .sonar .python .tree .DictCompExpressionImpl ;
35
34
36
35
/**
37
36
* Read (i.e. non-binding) usages have to be visited in a second phase.
Original file line number Diff line number Diff line change 60
60
import org .sonar .plugins .python .api .tree .TypeParams ;
61
61
import org .sonar .plugins .python .api .tree .WithItem ;
62
62
import org .sonar .python .semantic .SymbolUtils ;
63
- import org .sonar .python .tree .DictCompExpressionImpl ;
64
63
65
64
import static org .sonar .python .semantic .SymbolUtils .boundNamesFromExpression ;
66
65
You can’t perform that action at this time.
0 commit comments