d253642f25
The standalone embedder was sorting classes in the main isolate, but not child isolates, causing the CIDs to diverge. Also fix a few isolate tests. Bug: https://github.com/dart-lang/sdk/issues/33128 Bug: https://github.com/dart-lang/sdk/issues/36000 Change-Id: Ic21acb02eb623ae177ed242aa21b0e243775e369 Reviewed-on: https://dart-review.googlesource.com/c/93923 Reviewed-by: Régis Crelier <regis@google.com> Commit-Queue: Ryan Macnak <rmacnak@google.com>
13 lines
428 B
Dart
13 lines
428 B
Dart
// Copyright (c) 2015, 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.
|
|
|
|
import 'dart:isolate';
|
|
import "package:expect/expect.dart";
|
|
|
|
main(List<String> args, message) {
|
|
var sendPort1 = message[0] as SendPort;
|
|
var sendPort2 = message[1] as SendPort;
|
|
sendPort2.send(sendPort1);
|
|
}
|