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
DartBot opened this issue
Mar 11, 2015
· 5 comments
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
try {
print("Starting here");
throw new StateError("Throw from here");
try {
print("Starting there");
} catch (e) {
print("Caught in there: $e");
}
} catch (e) {
print("Caught in here: $e");
}
try {
print("Starting here");
try {
print("Starting there");
throw new StateError("Throw from there");
} catch (e) {
print("Caught in there: $e");
}
} catch (e) {
print("Caught in here: $e");
}
}
What is the expected output? What do you see instead?
Expected:
Starting here
Caught in here: Bad state: Throw from here
Starting here
Starting there
Caught in there: Bad state: Throw from there
Observed:
Segmentation fault (core dumped)
What version of the product are you using?
1.9.0-dev.10.4
On what operating system?
Ubuntu 14.04.2 LTS
What browser (if applicable)?
N/A
Please provide any additional information below.
The text was updated successfully, but these errors were encountered:
Fixed in r44440. Unreachable exception handlers have their handler type not computed: allow unreachable/uncomputed handlers in exception handler finalization.
DartBot
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
Mar 12, 2015
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
This issue was originally filed by da...@google.com
void main() {
try {
print("Starting here");
throw new StateError("Throw from here");
try {
print("Starting there");
} catch (e) {
print("Caught in there: $e");
}
} catch (e) {
print("Caught in here: $e");
}
try {
print("Starting here");
try {
print("Starting there");
throw new StateError("Throw from there");
} catch (e) {
print("Caught in there: $e");
}
} catch (e) {
print("Caught in here: $e");
}
}
What is the expected output? What do you see instead?
Expected:
Starting here
Caught in here: Bad state: Throw from here
Starting here
Starting there
Caught in there: Bad state: Throw from there
Observed:
Segmentation fault (core dumped)
What version of the product are you using?
1.9.0-dev.10.4
On what operating system?
Ubuntu 14.04.2 LTS
What browser (if applicable)?
N/A
Please provide any additional information below.
The text was updated successfully, but these errors were encountered: