You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The IfCmp bytecode takes an int as the first argument (the type of comparison) while the If bytecode takes an IfMode (enum) as the first argument (the type of comparison).
It would be nice if both of these bytecodes used the same type for the first argument, as they share most of the different comparisons, and it would benefit code re-use.
The text was updated successfully, but these errors were encountered:
The
IfCmp
bytecode takes anint
as the first argument (the type of comparison) while theIf
bytecode takes anIfMode
(enum) as the first argument (the type of comparison).It would be nice if both of these bytecodes used the same type for the first argument, as they share most of the different comparisons, and it would benefit code re-use.
The text was updated successfully, but these errors were encountered: