Files
sdk/tests/language/deferred_shared_and_unshared_classes_test.dart
T
sigurdm@google.com 4e5078f2e7 Move the dart_precompiled function inside scoping function.
Also make it a property of init.

This is also done for deferred hunks, allowing deferred loading to work
in CSP mode.

Long term I would like the precompiled function to go away, and move
the generated functions into the library-initializer when they are
 needed.

BUG=16898
R=floitsch@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@44162 260f80e4-7a28-3924-810f-c04153c831b5
2015-03-03 09:31:29 +00:00

21 lines
670 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 "package:expect/expect.dart";
import "package:async_helper/async_helper.dart";
import "deferred_shared_and_unshared_classes_lib1.dart" deferred as lib1;
import "deferred_shared_and_unshared_classes_lib2.dart" deferred as lib2;
import "dart:async";
void main() {
asyncTest(() {
return Future.wait([
lib1.loadLibrary().then((_) {
lib1.foo();
}),
lib2.loadLibrary().then((_) {
lib2.foo();
})]);
});
}