Uses of Interface
org.sonar.plugins.python.api.tree.ElseClause
-
Packages that use ElseClause Package Description org.sonar.plugins.python.api.tree org.sonar.python.metrics org.sonar.python.tree -
-
Uses of ElseClause in org.sonar.plugins.python.api.tree
Methods in org.sonar.plugins.python.api.tree that return ElseClause Modifier and Type Method Description ElseClauseIfStatement. elseBranch()ElseClauseForStatement. elseClause()ElseClauseTryStatement. elseClause()ElseClauseWhileStatement. elseClause()Methods in org.sonar.plugins.python.api.tree with parameters of type ElseClause Modifier and Type Method Description voidBaseTreeVisitor. visitElseClause(ElseClause pyElseClauseTree)voidTreeVisitor. visitElseClause(ElseClause elseClause) -
Uses of ElseClause in org.sonar.python.metrics
Methods in org.sonar.python.metrics with parameters of type ElseClause Modifier and Type Method Description voidCognitiveComplexityVisitor. visitElseClause(ElseClause pyElseClauseTree) -
Uses of ElseClause in org.sonar.python.tree
Classes in org.sonar.python.tree that implement ElseClause Modifier and Type Class Description classElseClauseImplMethods in org.sonar.python.tree that return ElseClause Modifier and Type Method Description ElseClauseIfStatementImpl. elseBranch()ElseClauseForStatementImpl. elseClause()ElseClauseTryStatementImpl. elseClause()ElseClauseWhileStatementImpl. elseClause()Constructors in org.sonar.python.tree with parameters of type ElseClause Constructor Description ForStatementImpl(Token forKeyword, List<Expression> expressions, Token inKeyword, List<Expression> testExpressions, Token colon, Token firstNewLine, Token firstIndent, StatementList body, Token firstDedent, ElseClause elseClause, Token asyncKeyword)IfStatementImpl(Token ifKeyword, Expression condition, Token colon, Token newLine, Token indent, StatementList statements, Token dedent, List<IfStatement> elifBranches, ElseClause elseClause)If statement constructorTryStatementImpl(Token tryKeyword, Token colon, Token newLine, Token indent, StatementList tryBody, Token dedent, List<ExceptClause> exceptClauses, FinallyClause finallyClause, ElseClause elseClause)WhileStatementImpl(Token whileKeyword, Expression condition, Token colon, Token firstNewline, Token firstIndent, StatementList body, Token firstDedent, ElseClause elseClause)
-