I think it would be a good idea to add some changes to try-catch from Haxe 4 versions, such as [wildcard catch](https://haxe.org/manual/expression-try-catch.html#wildcard-catch) and multiple catch (multiple catch) ```haxe try {} catch (v:A) {} catch (v:B) {} catch(e:haxe.Exception) {} ```