We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dart VM version: 0.4.4.4 r20810 Mac
This console output:
/Volumes/data/b/build/slave/dart-editor-mac-trunk/build/dart/runtime/vm/raw_object_snapshot.cc:2517: error: unreachable code Abort trap: 6
This code:
main() { spawnFunction(runTest).call(null); }
runTest() { port.receive((param, sendport) { try { throw 'sorry'; } catch (e, stack) { sendport.send(stack); } }); }
The only other issue I saw with "Abort trap: 6" was issue #1755, which was also marked "security", so I'm playing along.
The text was updated successfully, but these errors were encountered:
Obviously I'm getting yelled at for sending the stack trace via the isolate.
Sorry, something went wrong.
This is different a different problem. Every time you hit UNREACHABLE in the VM you get the "Abort trap".
Set owner to @a-siva. Removed Security label. Added Accepted label.
https://codereview.chromium.org//14348005
Added Fixed label.
a-siva
No branches or pull requests
Dart VM version: 0.4.4.4 r20810
Mac
This console output:
/Volumes/data/b/build/slave/dart-editor-mac-trunk/build/dart/runtime/vm/raw_object_snapshot.cc:2517: error: unreachable code
Abort trap: 6
This code:
main() {
spawnFunction(runTest).call(null);
}
runTest() {
port.receive((param, sendport) {
try {
throw 'sorry';
} catch (e, stack) {
sendport.send(stack);
}
});
}
The only other issue I saw with "Abort trap: 6" was issue #1755, which was also marked "security", so I'm playing along.
The text was updated successfully, but these errors were encountered: