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

Unified Diff: runtime/bin/vmservice/observatory/deployed/web/index.html

Issue 500093003: Remove service.Class.children, and (mostly) as a side-effect sort the class hierarchy view. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: build Created 6 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
« no previous file with comments | « no previous file | runtime/bin/vmservice/observatory/deployed/web/index_devtools.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/vmservice/observatory/deployed/web/index.html
diff --git a/runtime/bin/vmservice/observatory/deployed/web/index.html b/runtime/bin/vmservice/observatory/deployed/web/index.html
index 6d50ef8d0abc2725ea8044be70b31b24ae63955c..1c6900f88eaf600b1346a406efdf21ed5b2a6fb1 100644
--- a/runtime/bin/vmservice/observatory/deployed/web/index.html
+++ b/runtime/bin/vmservice/observatory/deployed/web/index.html
@@ -4188,19 +4188,19 @@ hr {
<div class="memberItem">&nbsp;</div>
- <template if="{{ cls.superClass != null }}">
+ <template if="{{ cls.superclass != null }}">
<div class="memberItem">
<div class="memberName">extends</div>
<div class="memberValue">
- <class-ref ref="{{ cls.superClass }}"></class-ref>
+ <class-ref ref="{{ cls.superclass }}"></class-ref>
</div>
</div>
</template>
- <template if="{{ cls.subClasses.length > 0 }}">
+ <template if="{{ cls.subclasses.length > 0 }}">
<div class="memberItem">
<div class="memberName">extended by</div>
<div class="memberValue">
- <template repeat="{{ subclass in cls.subClasses }}">
+ <template repeat="{{ subclass in cls.subclasses }}">
<class-ref ref="{{ subclass }}"></class-ref>
</template>
</div>
« no previous file with comments | « no previous file | runtime/bin/vmservice/observatory/deployed/web/index_devtools.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698