| Index: tests/compiler/dart2js_extra/deferred_split_lib2.dart
|
| diff --git a/runtime/observatory/lib/cli.dart b/tests/compiler/dart2js_extra/deferred_split_lib2.dart
|
| similarity index 66%
|
| copy from runtime/observatory/lib/cli.dart
|
| copy to tests/compiler/dart2js_extra/deferred_split_lib2.dart
|
| index 607c58a919685c7fca635c1bf5acb02543720582..d690e311ecee452f767aa8ea630e510b8c780bbc 100644
|
| --- a/runtime/observatory/lib/cli.dart
|
| +++ b/tests/compiler/dart2js_extra/deferred_split_lib2.dart
|
| @@ -2,8 +2,8 @@
|
| // 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.
|
|
|
| -library cli;
|
| +// Deferred library loaded by deferred_split_test.dart
|
|
|
| -import 'dart:async';
|
| +import 'deferred_split_lib1.dart';
|
|
|
| -part 'src/cli/command.dart';
|
| +createA() => new A();
|
|
|