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

Unified Diff: runtime/observatory/lib/src/elements/isolate_summary.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/isolate_summary.html
diff --git a/runtime/observatory/lib/src/elements/isolate_summary.html b/runtime/observatory/lib/src/elements/isolate_summary.html
index 618b42ec59029ff0bfcdea42ed8fac9bc9d5f4ba..2840e2a5979c1d087e0bd242a1b2174163db67a0 100644
--- a/runtime/observatory/lib/src/elements/isolate_summary.html
+++ b/runtime/observatory/lib/src/elements/isolate_summary.html
@@ -83,19 +83,18 @@
by exception
</template>
at
- <function-ref ref="{{ isolate.topFrame['function'] }}">
+ <function-ref ref="{{ isolate.topFrame.function }}">
</function-ref>
- (<script-ref ref="{{ isolate.topFrame['script'] }}"
- pos="{{ isolate.topFrame['tokenPos'] }}"></script-ref>)
+ (<source-link location="{{ isolate.topFrame.location }}">
+ </source-link>)
</template>
</template>
<template if="{{ isolate.running }}">
at
- <function-ref ref="{{ isolate.topFrame['function'] }}">
+ <function-ref ref="{{ isolate.topFrame.function }}">
</function-ref>
- (<script-ref ref="{{ isolate.topFrame['script'] }}"
- pos="{{ isolate.topFrame['tokenPos'] }}"></script-ref>)
+ (<source-link location="{{ isolate.topFrame.location }}"></source-link>)
</template>
</template>
« no previous file with comments | « runtime/observatory/lib/src/elements/function_view.html ('k') | runtime/observatory/lib/src/elements/isolate_view.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698