Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(694)

Unified Diff: runtime/observatory/lib/src/elements/instructions_view.dart

Issue 1212933003: Observatory improvements for exploring compiled code. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
}
}
« no previous file with comments | « runtime/observatory/lib/src/elements/icdata_view.html ('k') | runtime/observatory/lib/src/elements/instructions_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698