| Index: packages/initialize/test/cycle_b.dart
|
| diff --git a/web_components/lib/init.dart b/packages/initialize/test/cycle_b.dart
|
| similarity index 57%
|
| copy from web_components/lib/init.dart
|
| copy to packages/initialize/test/cycle_b.dart
|
| index 1ebb1413f9023f4113e1c1616511af98477037f5..3af725d832d086940f2ebb7f4870ce50095b80af 100644
|
| --- a/web_components/lib/init.dart
|
| +++ b/packages/initialize/test/cycle_b.dart
|
| @@ -1,9 +1,10 @@
|
| // 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.
|
| -library web_components.init;
|
| +library initialize.test.cycle_b;
|
|
|
| -import 'dart:async';
|
| -import 'src/init.dart';
|
| +import 'package:initialize/src/initialize_tracker.dart';
|
| +import 'cycle_a.dart';
|
|
|
| -Future main() => initWebComponents();
|
| +@initializeTracker
|
| +class CycleB extends CycleA {}
|
|
|