| Index: runtime/observatory/lib/src/elements/instructions_view.dart
|
| diff --git a/runtime/observatory/lib/src/elements/object_view.dart b/runtime/observatory/lib/src/elements/instructions_view.dart
|
| similarity index 50%
|
| copy from runtime/observatory/lib/src/elements/object_view.dart
|
| copy to runtime/observatory/lib/src/elements/instructions_view.dart
|
| index 863a2d44cb4e0440ecdc6847f794cc5450cbf4ea..e5c1fb2832b77f45c4bb95d6cb9b9d37e94d0074 100644
|
| --- a/runtime/observatory/lib/src/elements/object_view.dart
|
| +++ b/runtime/observatory/lib/src/elements/instructions_view.dart
|
| @@ -1,21 +1,21 @@
|
| -// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
|
| +// 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 object_view;
|
| +library instructions_view;
|
|
|
| import 'dart:async';
|
| import 'observatory_element.dart';
|
| import 'package:observatory/service.dart';
|
| import 'package:polymer/polymer.dart';
|
|
|
| -@CustomTag('object-view')
|
| -class ObjectViewElement extends ObservatoryElement {
|
| - @published ServiceObject object;
|
| +@CustomTag('instructions-view')
|
| +class InstructionsViewElement extends ObservatoryElement {
|
| + @published Instructions instructions;
|
|
|
| - ObjectViewElement.created() : super.created();
|
| + InstructionsViewElement.created() : super.created();
|
|
|
| Future refresh() {
|
| - return object.reload();
|
| + return instructions.reload();
|
| }
|
| }
|
|
|