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
When the decompiler prints out switch statements, it prints out each case in reverse. So switch(arg) { case A: print A; case B: print B; } would turn into switch(arg) { case B: print A; case A: print B; }
The text was updated successfully, but these errors were encountered:
When the decompiler prints out switch statements, it prints out each case in reverse. So switch(arg) { case A: print A; case B: print B; } would turn into switch(arg) { case B: print A; case A: print B; }
The text was updated successfully, but these errors were encountered: