Due to this pull request, the compiler converts some EVALUATE statements to switch statements instead of if statements in order to improve the readability of generate Java files.
The compiler converts switch statements that satisfies all conditions descibed in the following list to switch satatements.
The EVALUATE statement evaluates a single integer variable
Each WHEN clause except for WHEN OTHER specifies a single integer or a single variable whose level number is 78
Each integer is between -2147483648 and 2147483647
No integer is specified by two or more WHEN clauses
Due to this pull request, the compiler converts some EVALUATE statements to switch statements instead of if statements in order to improve the readability of generate Java files. The compiler converts switch statements that satisfies all conditions descibed in the following list to switch satatements.