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

Unified Diff: runtime/bin/vmservice/observatory/deployed/web/index_devtools.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
Index: runtime/bin/vmservice/observatory/deployed/web/index_devtools.html
diff --git a/runtime/bin/vmservice/observatory/deployed/web/index_devtools.html b/runtime/bin/vmservice/observatory/deployed/web/index_devtools.html
index 4a50140538e9c5570ba0df9357f7f167a8c66aa9..f268840026c37d3ca8688eac21d71b84e8429cb8 100644
--- a/runtime/bin/vmservice/observatory/deployed/web/index_devtools.html
+++ b/runtime/bin/vmservice/observatory/deployed/web/index_devtools.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>

Powered by Google App Engine
This is Rietveld 408576698