mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
[python] Make overlooked PyElementVisitor methods for statements delegate to visitPyStatement
GitOrigin-RevId: f6853d0dfc5ddcc7b40bfccead0ad779328fc751
This commit is contained in:
committed by
intellij-monorepo-bot
parent
82f2e8dd9a
commit
064419d1e9
@@ -203,11 +203,11 @@ public class PyElementVisitor extends PsiElementVisitor {
|
||||
}
|
||||
|
||||
public void visitPyFunction(@NotNull PyFunction node) {
|
||||
visitPyElement(node);
|
||||
visitPyStatement(node);
|
||||
}
|
||||
|
||||
public void visitPyClass(@NotNull PyClass node) {
|
||||
visitPyElement(node);
|
||||
visitPyStatement(node);
|
||||
}
|
||||
|
||||
public void visitPyFile(@NotNull PyFile node) {
|
||||
@@ -271,7 +271,7 @@ public class PyElementVisitor extends PsiElementVisitor {
|
||||
}
|
||||
|
||||
public void visitPyAssertStatement(@NotNull PyAssertStatement node) {
|
||||
visitPyElement(node);
|
||||
visitPyStatement(node);
|
||||
}
|
||||
|
||||
public void visitPyPassStatement(@NotNull PyPassStatement node) {
|
||||
|
||||
Reference in New Issue
Block a user