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
This comes from a customer.
I'm using Dartium and Dart Editor (Dart Editor version 0.4.3_r20602)
Consider this code:
import 'dart:html'; import 'dart:isolate';
childIsolate() { port.receive((msg, replyTo) { print('doing some work'); if (replyTo != null) replyTo.send('shutdown'); }); }
main() { var sender = spawnFunction(childIsolate); var receiver = new ReceivePort(); receiver.receive((msg, _) { if (msg == 'shutdown') { print('shutting down'); receiver.close(); } }); sender.send('do work please', receiver.toSendPort()); }
Problem: no breakpoint is triggered.
The text was updated successfully, but these errors were encountered:
Set owner to @devoncarew. Added this to the Later milestone.
Sorry, something went wrong.
Removed this from the Later milestone. Added this to the M6 milestone.
Removed this from the M6 milestone. Added this to the M7 milestone.
Removed this from the M7 milestone. Added this to the Later milestone.
Removed this from the Later milestone. Added this to the M9 milestone.
Removed this from the M9 milestone. Added this to the 1.1 milestone.
Added Duplicate label. Marked as being merged into #4890.
devoncarew
No branches or pull requests
This comes from a customer.
I'm using Dartium and Dart Editor (Dart Editor version 0.4.3_r20602)
Consider this code:
import 'dart:html';
import 'dart:isolate';
childIsolate() {
port.receive((msg, replyTo) {
print('doing some work');
if (replyTo != null) replyTo.send('shutdown');
});
}
main() {
var sender = spawnFunction(childIsolate);
var receiver = new ReceivePort();
receiver.receive((msg, _) {
if (msg == 'shutdown') {
print('shutting down');
receiver.close();
}
});
sender.send('do work please', receiver.toSendPort());
}
Problem: no breakpoint is triggered.
The text was updated successfully, but these errors were encountered: