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
floitschG opened this issue
Jul 23, 2013
· 6 comments
Assignees
Labels
area-vmUse area-vm for VM related issues, including code coverage, and the AOT and JIT backends.P1A high priority bug; for example, a single project is unusable or has many test failures
floitschG
added
Type-Defect
P1
A high priority bug; for example, a single project is unusable or has many test failures
area-vm
Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.
labels
Aug 5, 2013
area-vmUse area-vm for VM related issues, including code coverage, and the AOT and JIT backends.P1A high priority bug; for example, a single project is unusable or has many test failures
The finally block is, under special circumstances, executed twice.
The following code (extracted from language/throw8_test.dart) shows some conditions:
===
try {
try { // <==== requires nested try.
return 499; // <=== must return something.
} catch (e, st) {
rethrow;
}
} finally {
finallyExecutionCount++; // <== should not be invoked twice.
throw "quit finally with throw"; // <=== must throw.
}
===
I'm leaving the priority unassigned, but please consider making this a high priority bug, since it's extremely hard to debug.
The text was updated successfully, but these errors were encountered: