Files
sdk/tests/lib/isolate/illegal_msg_function_test.dart
T
Martin Kustermann e9b56794fc [vm/compiler] Make closures have no context if no variables are closed over
As a side-effect of making closures without captured variables have an
empty context, we not only avoid a memory leak, but also allow such
closures to be sent across [SendPort]s.

Issue https://github.com/dart-lang/sdk/issues/36983
Issue https://github.com/dart-lang/sdk/issues/45603

TEST=vm/dart{_2,}/isolates/closures_without_captured_variables_test

Change-Id: I5e8845203059ff625f7cff3f072d845b5e48ba36
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/212297
Commit-Queue: Martin Kustermann <kustermann@google.com>
Reviewed-by: Slava Egorov <vegorov@google.com>
2021-09-03 12:35:58 +00:00

44 lines
995 B
Dart

// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// VMOptions=--no-enable-isolate-groups
library illegal_msg_function_test;
import "dart:isolate";
import "package:expect/expect.dart";
import "package:async_helper/async_helper.dart";
echo(sendPort) {
var port = new ReceivePort();
sendPort.send(port.sendPort);
port.listen((msg) {
sendPort.send("echoing ${msg(1)}}");
});
}
void main() {
asyncStart();
final port = new ReceivePort();
// Ignore returned Future.
Isolate.spawn(echo, port.sendPort);
port.first.then((_snd) {
SendPort snd = _snd;
int function(x) => x + 2;
try {
snd.send(function);
} catch (e) {
// Expected behavior.
port.close();
asyncEnd();
return;
}
Expect.fail("Should not be reached. Message sending didn't throw.");
});
}