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

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

Issue 1152753005: Service cleanups... (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Update docs. Tweak TypeRef and BoundedType. 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
« no previous file with comments | « no previous file | runtime/observatory/lib/src/elements/context_view.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/lib/src/elements/context_ref.html
diff --git a/runtime/observatory/lib/src/elements/context_ref.html b/runtime/observatory/lib/src/elements/context_ref.html
index deb767b67638fdbf377217575c51a0cc7ad9910d..82e313d5e95789938e589b5a2790d4488cb8a0a1 100644
--- a/runtime/observatory/lib/src/elements/context_ref.html
+++ b/runtime/observatory/lib/src/elements/context_ref.html
@@ -16,11 +16,12 @@
<any-service-ref ref="{{ ref.parentContext }}"></any-service-ref>
</div>
</div>
- <template repeat="{{ variable in ref.variables }}">
+ <template repeat="{{ index in ref.variables.asMap().keys }}">
<div class="memberItem">
- <div class="memberName">[{{ variable['index']}}]</div>
+ <div class="memberName">[{{ index }}]</div>
<div class="memberValue">
- <any-service-ref ref="{{ variable['value'] }}"></any-service-ref>
+ <any-service-ref ref="{{ ref.variables[index]['value'] }}">
+ </any-service-ref>
</div>
</div>
</template>
« no previous file with comments | « no previous file | runtime/observatory/lib/src/elements/context_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698