You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
312 B
15 lines
312 B
4 months ago
|
Test for select generation for conditional returns.
|
||
|
|
||
|
Tests the rewriting from:
|
||
|
|
||
|
If [ Condition ]
|
||
|
/ \
|
||
|
false branch true branch
|
||
|
return FalseValue return TrueValue
|
||
|
|
||
|
to:
|
||
|
|
||
|
true branch
|
||
|
false branch
|
||
|
return Select [FalseValue, TrueValue, Condition]
|