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

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

Issue 1246073005: Retaining path improvements. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 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/instance_ref.html
diff --git a/runtime/observatory/lib/src/elements/instance_ref.html b/runtime/observatory/lib/src/elements/instance_ref.html
index d8a1def51848e03495a8703244c1f0cba33c4355..91c539b9c9b7ec4d1dfd952daa87b247ef9916bc 100644
--- a/runtime/observatory/lib/src/elements/instance_ref.html
+++ b/runtime/observatory/lib/src/elements/instance_ref.html
@@ -38,12 +38,14 @@
<template if="{{ ref.isClosure }}">
<a on-click="{{ goto }}" _href="{{ url }}">
- {{ ref.function.qualifiedName }}
+ <em>Closure</em> ({{ ref.function.qualifiedName }})
</a>
</template>
<template if="{{ ref.isRegExp }}">
- <a on-click="{{ goto }}" _href="{{ url }}"><em>{{ ref.clazz.name }}({{ ref.pattern.valueAsString }})</em></a>
+ <a on-click="{{ goto }}" _href="{{ url }}">
+ <em>{{ ref.clazz.name }}</em> ({{ ref.pattern.valueAsString }})
+ </a>
</template>
<template if="{{ ref.isPlainInstance }}">
« no previous file with comments | « runtime/observatory/lib/src/elements/inbound_reference.html ('k') | runtime/observatory/lib/src/elements/object_common.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698