mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
dfa: honor control transfer instructions when performing auxiliary analyses (IDEA-162557)
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
class Bar {
|
||||
void repeatUntilPassesInSmartMode(final Runnable r) {
|
||||
while (true) {
|
||||
try {
|
||||
r.run();
|
||||
return;
|
||||
}
|
||||
catch (Throwable e) {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user