Uses of Interface
org.sonar.python.api.tree.ElseStatement
-
Packages that use ElseStatement Package Description org.sonar.python.api.tree org.sonar.python.metrics org.sonar.python.tree -
-
Uses of ElseStatement in org.sonar.python.api.tree
Methods in org.sonar.python.api.tree that return ElseStatement Modifier and Type Method Description ElseStatementIfStatement. elseBranch()ElseStatementTryStatement. elseClause()Methods in org.sonar.python.api.tree with parameters of type ElseStatement Modifier and Type Method Description voidTreeVisitor. visitElseStatement(ElseStatement elseStatement) -
Uses of ElseStatement in org.sonar.python.metrics
Methods in org.sonar.python.metrics with parameters of type ElseStatement Modifier and Type Method Description voidCognitiveComplexityVisitor. visitElseStatement(ElseStatement pyElseStatementTree) -
Uses of ElseStatement in org.sonar.python.tree
Classes in org.sonar.python.tree that implement ElseStatement Modifier and Type Class Description classElseStatementImplMethods in org.sonar.python.tree that return ElseStatement Modifier and Type Method Description ElseStatementIfStatementImpl. elseBranch()ElseStatementTryStatementImpl. elseClause()Methods in org.sonar.python.tree with parameters of type ElseStatement Modifier and Type Method Description voidBaseTreeVisitor. visitElseStatement(ElseStatement pyElseStatementTree)Constructors in org.sonar.python.tree with parameters of type ElseStatement Constructor Description IfStatementImpl(Token ifKeyword, Expression condition, StatementList statements, List<IfStatement> elifBranches, ElseStatement elseStatement)If statement constructorTryStatementImpl(com.sonar.sslr.api.AstNode astNode, Token tryKeyword, StatementList tryBody, List<ExceptClause> exceptClauses, FinallyClause finallyClause, ElseStatement elseStatement)
-