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

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

Issue 2244433003: Converted Observatory refs elements (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: All element tested Created 4 years, 4 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_ref.dart
diff --git a/runtime/observatory/lib/src/elements/instructions_ref.dart b/runtime/observatory/lib/src/elements/instructions_ref.dart
new file mode 100644
index 0000000000000000000000000000000000000000..b72a909391174a05594f5a904e38108e9bdcbd96
--- /dev/null
+++ b/runtime/observatory/lib/src/elements/instructions_ref.dart
@@ -0,0 +1,62 @@
+// Copyright (c) 2013, 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.
+
+import 'dart:html';
+import 'dart:async';
+import 'package:observatory/models.dart' as M
+ show IsolateRef, InstructionsRef;
+import 'package:observatory/src/elements/helpers/rendering_scheduler.dart';
+import 'package:observatory/src/elements/helpers/tag.dart';
+import 'package:observatory/src/elements/helpers/uris.dart';
+
+class InstructionsRefElement extends HtmlElement implements Renderable {
+ static const tag = const Tag<InstructionsRefElement>('instructions-ref');
+
+ RenderingScheduler<InstructionsRefElement> _r;
+
+ Stream<RenderedEvent<InstructionsRefElement>> get onRendered => _r.onRendered;
+
+ M.IsolateRef _isolate;
+ M.InstructionsRef _instructions;
+
+ M.IsolateRef get isolate => _isolate;
+ M.InstructionsRef get instructions => _instructions;
+
+ factory InstructionsRefElement(M.IsolateRef isolate,
+ M.InstructionsRef instructions, {RenderingQueue queue}) {
+ assert(isolate != null);
+ assert(instructions != null);
+ InstructionsRefElement e = document.createElement(tag.name);
+ e._r = new RenderingScheduler(e, queue: queue);
+ e._isolate = isolate;
+ e._instructions = instructions;
+ return e;
+ }
+
+ InstructionsRefElement.created() : super.created();
+
+ @override
+ void attached() {
+ super.attached();
+ _r.enable();
+ }
+
+ @override
+ void detached() {
+ super.detached();
+ _r.disable(notify: true);
+ children = [];
+ }
+
+ void render() {
+ children = [
+ new AnchorElement(href: Uris.inspect(_isolate, object: _instructions))
+ ..children = [
+ new SpanElement()..classes = ['emphatize']
+ ..text = 'Instructions',
+ new SpanElement()..text = ' (${_instructions.code.name})'
+ ]
+ ];
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698