Uses of Interface
org.sonar.plugins.python.api.tree.IfStatement
-
Packages that use IfStatement Package Description org.sonar.plugins.python.api.tree org.sonar.python.metrics org.sonar.python.tree -
-
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 IfStatement Modifier and Type Method Description List<IfStatement>IfStatement. elifBranches()Methods in org.sonar.plugins.python.api.tree with parameters of type IfStatement Modifier and Type Method Description voidBaseTreeVisitor. 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 IfStatement Modifier and Type Method Description voidCognitiveComplexityVisitor. visitIfStatement(IfStatement pyIfStatementTree)voidComplexityVisitor. visitIfStatement(IfStatement pyIfStatementTree) -
Uses of IfStatement in org.sonar.python.tree
Classes in org.sonar.python.tree that implement IfStatement Modifier and Type Class Description classIfStatementImplMethods in org.sonar.python.tree that return IfStatement Modifier and Type Method Description IfStatementPythonTreeMaker. ifStatement(com.sonar.sslr.api.AstNode astNode)Methods in org.sonar.python.tree that return types with arguments of type IfStatement Modifier and Type Method Description List<IfStatement>IfStatementImpl. elifBranches()Constructor parameters in org.sonar.python.tree with type arguments of type IfStatement Constructor Description IfStatementImpl(Token ifKeyword, Expression condition, Token colon, Token newLine, Token indent, StatementList statements, Token dedent, List<IfStatement> elifBranches, ElseClause elseClause)If statement constructor
-