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
Similar to #419, when completing within a catch parameter list, Throwable types should have boosted relevance.
try {
} catch (Th) { // Throwable should be at the top of the list for Ctrl-Space before ')'
} catch (Exception | Er) { // Error should be at the top of the list for Ctrl-Space before ')'
}
Note: Parser error recovery may be required for catch (Exception | Er) where the parameter name is not yet supplied.
The text was updated successfully, but these errors were encountered:
Similar to #419, when completing within a catch parameter list,
Throwable
types should have boosted relevance.Note: Parser error recovery may be required for
catch (Exception | Er)
where the parameter name is not yet supplied.The text was updated successfully, but these errors were encountered: