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

Unified Diff: runtime/observatory/lib/src/elements/script_inset.html

Issue 1150303004: Switch to using SourceLocation universally in service protocol. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: post merge Created 5 years, 7 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/script_inset.html
diff --git a/runtime/observatory/lib/src/elements/script_inset.html b/runtime/observatory/lib/src/elements/script_inset.html
index 7fdbcbf66a4c1131b596132f3b4ac5aceb92e87a..30b20d8c21f37fa3241f5386da64dacba8d6d2b7 100644
--- a/runtime/observatory/lib/src/elements/script_inset.html
+++ b/runtime/observatory/lib/src/elements/script_inset.html
@@ -79,4 +79,20 @@
</template>
</polymer-element>
+
+<polymer-element name="source-inset">
+<template>
+ <template if="{{ location != null }}">
+ <script-inset script="{{ location.script }}"
+ startPos="{{ location.tokenPos }}"
+ endPos="{{ location.endTokenPos }}"
+ height="{{ height }}"
+ currentPos="{{ currentPos }}"
+ inDebuggerContext="{{ inDebuggerContext }}"
+ variables="{{ variables }}">
+ </script-inset>
+ </template>
+</template>
+</polymer-element>
+
<script type="application/dart" src="script_inset.dart"></script>
« no previous file with comments | « runtime/observatory/lib/src/elements/script_inset.dart ('k') | runtime/observatory/lib/src/elements/script_ref.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698