Uses of Interface
org.sonar.plugins.python.api.tree.IfStatement
Packages that use IfStatement
Package
Description
-
Uses of IfStatement in org.sonar.plugins.python.api.tree
Methods in org.sonar.plugins.python.api.tree that return types with arguments of type IfStatementMethods in org.sonar.plugins.python.api.tree with parameters of type IfStatementModifier and TypeMethodDescriptionvoidBaseTreeVisitor.visitIfStatement(IfStatement pyIfStatementTree) voidTreeVisitor.visitIfStatement(IfStatement ifStatement) -
Uses of IfStatement in org.sonar.python.metrics
Methods in org.sonar.python.metrics with parameters of type IfStatementModifier and TypeMethodDescriptionvoidCognitiveComplexityVisitor.visitIfStatement(IfStatement pyIfStatementTree) voidComplexityVisitor.visitIfStatement(IfStatement pyIfStatementTree) -
Uses of IfStatement in org.sonar.python.tree
Classes in org.sonar.python.tree that implement IfStatementMethods in org.sonar.python.tree that return IfStatementModifier and TypeMethodDescriptionPythonTreeMaker.ifStatement(com.sonar.sslr.api.AstNode astNode) Methods in org.sonar.python.tree that return types with arguments of type IfStatementConstructor parameters in org.sonar.python.tree with type arguments of type IfStatementModifierConstructorDescriptionIfStatementImpl(Token ifKeyword, Expression condition, Token colon, Token newLine, Token indent, StatementList statements, Token dedent, List<IfStatement> elifBranches, ElseClause elseClause) If statement constructor