pli
Nodes of the abstract syntax tree for statements of the form “if ( condition ) thenBranch” or “if ( condition ) thenBranch else elseBranch”.
if
(
)
else
”.
If there is no else clause in the source code, the elseBranch will be an empty Block as if “else {}” would have been in the source code.
else {}
Nodes of the abstract syntax tree for statements of the form “
if(condition)thenBranch” or “if(condition)thenBranchelseelseBranch”.If there is no
elseclause in the source code, the elseBranch will be an empty Block as if “else {}” would have been in the source code.