| Index: runtime/bin/vmservice/client/lib/src/observatory_elements/class_ref.dart
|
| diff --git a/pkg/polymer/example/canonicalization/lib/a.dart b/runtime/bin/vmservice/client/lib/src/observatory_elements/class_ref.dart
|
| similarity index 59%
|
| copy from pkg/polymer/example/canonicalization/lib/a.dart
|
| copy to runtime/bin/vmservice/client/lib/src/observatory_elements/class_ref.dart
|
| index 78426db67214373e8e60ef08a3cc33cf5cc762b4..3a49ec8b08a1014c9945a532968f81c28e507767 100644
|
| --- a/pkg/polymer/example/canonicalization/lib/a.dart
|
| +++ b/runtime/bin/vmservice/client/lib/src/observatory_elements/class_ref.dart
|
| @@ -2,15 +2,12 @@
|
| // 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 canonicalization.a;
|
| +library class_ref_element;
|
|
|
| import 'package:polymer/polymer.dart';
|
| -import 'package:canonicalization/c.dart';
|
| -import 'd.dart';
|
| +import 'service_ref.dart';
|
|
|
| -int a = 0;
|
| -@initMethod _init() {
|
| - a++;
|
| - c++;
|
| - d++;
|
| +@CustomTag('class-ref')
|
| +class ClassRefElement extends ServiceRefElement {
|
| + ClassRefElement.created() : super.created();
|
| }
|
|
|