Benjamin Urquhart
Benjamin Urquhart
I want my lambdas #6
Java 6 is obsolete, update to at least 8 (11 if possible) I've already made a PR for this
## Description This PR attempts to add try-catch decompilation to the tool. It's an absolute mess and incomplete right now which is why this is a draft PR. ### Caveats...
Boolean expressions in function arguments are interpreted as a switch statement by the decompiler.
Sample code (the expression must not be the last or only argument): ```gml draw_sprite(0, a == 1 || a == 2, 0, 0) ``` ```gml instance_find(a == 1 || a...