Home | History | Annotate | Download | only in scripts

Lines Matching refs:else_branch

55            | $if EXPRESSION [[ CODE ]] ELSE_BRANCH
59 ELSE_BRANCH ::= $else [[ CODE ]]
60 | $elif EXPRESSION [[ CODE ]] ELSE_BRANCH
416 def __init__(self, else_branch=None):
417 self.else_branch = else_branch
421 def __init__(self, exp=None, then_branch=None, else_branch=None):
424 self.else_branch = else_branch
687 elif node.else_branch is not None:
688 RunCode(env.Clone(), node.else_branch, output)