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