dart-sdk/tests/isolate/deferred_loaded_lib.dart
asiva@google.com 62d6e2e0bc Fix crash that happens when we send an object whose type is in a defer
loaded a library that is loaded in the isolate that is sending the message but has not been loaded yet in the isolate which is receiving the message.

R=hausner@google.com

Review URL: https://codereview.chromium.org//926073002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@43774 260f80e4-7a28-3924-810f-c04153c831b5
2015-02-13 19:17:01 +00:00

10 lines
311 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.
class FromChildIsolate {
String toString() => 'from child isolate';
int get fld => 10;
}