Searched defs:thrownInTry (Results 1 - 1 of 1) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DFlow.java1053 List<Type> thrownInTry = allowImprovedCatchAnalysis ?
1083 List<Type> rethrownTypes = chk.diff(thrownInTry, caughtInTry);
1090 checkCaughtType(l.head.pos(), exc, thrownInTry, caughtInTry);
1126 thrown = chk.union(thrown, chk.diff(thrownInTry, caughtInTry));
1143 thrown = chk.union(thrown, chk.diff(thrownInTry, caughtInTry));
1154 void checkCaughtType(DiagnosticPosition pos, Type exc, List<Type> thrownInTry, List<Type> caughtInTry) { argument
1159 !chk.intersects(exc, thrownInTry)) {
1162 List<Type> catchableThrownTypes = chk.intersect(List.of(exc), thrownInTry);

Completed in 110 milliseconds