Uses of Interface
org.sonar.plugins.python.api.tree.ElseClause
Packages that use ElseClause
Package
Description
-
Uses of ElseClause in org.sonar.plugins.python.api.tree
Methods in org.sonar.plugins.python.api.tree that return ElseClauseModifier and TypeMethodDescriptionIfStatement.elseBranch()ForStatement.elseClause()TryStatement.elseClause()WhileStatement.elseClause()Methods in org.sonar.plugins.python.api.tree with parameters of type ElseClauseModifier and TypeMethodDescriptionvoidBaseTreeVisitor.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 ElseClauseModifier and TypeMethodDescriptionvoidCognitiveComplexityVisitor.visitElseClause(ElseClause pyElseClauseTree) -
Uses of ElseClause in org.sonar.python.tree
Classes in org.sonar.python.tree that implement ElseClauseMethods in org.sonar.python.tree that return ElseClauseModifier and TypeMethodDescriptionIfStatementImpl.elseBranch()ForStatementImpl.elseClause()TryStatementImpl.elseClause()WhileStatementImpl.elseClause()Constructors in org.sonar.python.tree with parameters of type ElseClauseModifierConstructorDescriptionForStatementImpl(Token forKeyword, List<Expression> expressions, List<Token> expressionsCommas, Token inKeyword, List<Expression> testExpressions, List<Token> testExpressionsCommas, 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)