Interface IfStatement

All Superinterfaces:
Statement, Tree
All Known Implementing Classes:
IfStatementImpl

public interface IfStatement extends Statement
if-elif-else statement. Note that this interface has a recursive structure because it represents both 'if' clause and 'elif' clause
   if condition():
     body()
   elseBranch()
 
or
   elif condition():
     body()
 
See https://docs.python.org/3/reference/compound_stmts.html#grammar-token-if-stmt