Is there a term or some short wording to refer to an expression in the "first" line of the control flow statement?
func() {
if (a == b) {
var = 1 + 1
return True
} else {
var = 5 + 5
return False
}
}
if ((a == b)
&& (c == d)) {
...
}
In the first example, the term/wording should "match" a == b
, True
, and False
. It should not match 1 + 1
and 5 + 5
.
In the second example, it should match (a == b) && (c == d)
.
I used to use "control flow statement expression", but I do not think this term is accurate.