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

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

Issue 547703002: Rework how types work in the VM Service. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: gen js Created 6 years, 3 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 9caa13251c079d9c6b23c5380424d514424fd6e1..600770c5fa1d9bbf1860644d5b2198f135cf329f 100644
--- a/runtime/bin/vmservice/observatory/deployed/web/index_devtools.html
+++ b/runtime/bin/vmservice/observatory/deployed/web/index_devtools.html
@@ -12,7 +12,7 @@
<body><script src="packages/web_components/platform.js"></script>
-<!-- unminified for debugging:
+<!-- unminfied for debugging:
<link rel="import" href="src/js/polymer/layout.html">
<script src="src/js/polymer/polymer.concat.js"></script>
-->
@@ -925,11 +925,12 @@ hr {
<div title="{{ hoverText }}">{{ ref.valueAsString }}</div>
</template>
- <template if="{{ ref.isString || ref.isBool || ref.isInt || ref.isDouble || ref.isNull }}">
+ <template if="{{ ref.isString || ref.isBool || ref.isInt ||
+ ref.isDouble || ref.isNull }}">
<a on-click="{{ goto }}" _href="{{ url }}">{{ ref.valueAsString }}</a>
</template>
- <template if="{{ ref.isType }}">
+ <template if="{{ ref.isAbstractType }}">
<a on-click="{{ goto }}" _href="{{ url }}">{{ ref.name }}</a>
</template>
@@ -940,7 +941,7 @@ hr {
</a>
</template>
- <template if="{{ ref.isInstance &amp;&amp; !ref.isClosure }}">
+ <template if="{{ ref.isPlainInstance }}">
<a on-click="{{ goto }}" _href="{{ url }}"><em>{{ ref.clazz.name }}</em></a>
<curly-block callback="{{ expander() }}">
<div class="memberList">
@@ -15477,10 +15478,10 @@ hr {
<template if="{{ !instance.isError }}">
<div class="content">
- <template if="{{ instance.isType }}">
+ <template if="{{ instance.isAbstractType }}">
<h1>type {{ instance.name }}</h1>
</template>
- <template if="{{ !instance.isType }}">
+ <template if="{{ !instance.isAbstractType }}">
<h1>instance of {{ instance.clazz.name }}</h1>
</template>

Powered by Google App Engine
This is Rietveld 408576698