| OLD | NEW |
| 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> | 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> |
| 2 <link rel="import" href="curly_block.html"> | 2 <link rel="import" href="curly_block.html"> |
| 3 <link rel="import" href="observatory_element.html"> | 3 <link rel="import" href="observatory_element.html"> |
| 4 <link rel="import" href="service_ref.html"> | 4 <link rel="import" href="service_ref.html"> |
| 5 | 5 |
| 6 <polymer-element name="instance-ref" extends="service-ref"> | 6 <polymer-element name="instance-ref" extends="service-ref"> |
| 7 <template> | 7 <template> |
| 8 <link rel="stylesheet" href="css/shared.css"> | 8 <link rel="stylesheet" href="css/shared.css"> |
| 9 <style> | 9 <style> |
| 10 .errorBox { | 10 .errorBox { |
| 11 background-color: #f5f5f5; | 11 background-color: #f5f5f5; |
| 12 border: 1px solid #ccc; | 12 border: 1px solid #ccc; |
| 13 padding: 10px; | 13 padding: 10px; |
| 14 font-family: consolas, courier, monospace; | 14 font-family: consolas, courier, monospace; |
| 15 font-size: 1em; | 15 font-size: 1em; |
| 16 line-height: 1.2em; | 16 line-height: 1.2em; |
| 17 white-space: pre; | 17 white-space: pre; |
| 18 } | 18 } |
| 19 </style> | 19 </style> |
| 20 <span> | 20 <span> |
| 21 <template if="{{ ref.isSentinel }}"> | 21 <template if="{{ ref.isSentinel }}"> |
| 22 <div title="{{ hoverText }}">{{ ref.valueAsString }}</div> | 22 <div title="{{ hoverText }}">{{ ref.valueAsString }}</div> |
| 23 </template> | 23 </template> |
| 24 | 24 |
| 25 <template if="{{ ref.isString || ref.isBool || ref.isInt || | 25 <template if="{{ ref.isBool || ref.isInt || |
| 26 ref.isDouble || ref.isNull }}"> | 26 ref.isDouble || ref.isNull }}"> |
| 27 <a on-click="{{ goto }}" _href="{{ url }}">{{ ref.valueAsString }}</a> | 27 <a on-click="{{ goto }}" _href="{{ url }}">{{ ref.valueAsString }}</a> |
| 28 </template> | 28 </template> |
| 29 | 29 |
| 30 <template if="{{ ref.isString }}"> |
| 31 <a on-click="{{ goto }}" _href="{{ url }}">{{ asStringLiteral(ref.valueA
sString, ref.valueAsStringIsTruncated) }}</a> |
| 32 </template> |
| 33 |
| 34 |
| 30 <template if="{{ ref.isAbstractType }}"> | 35 <template if="{{ ref.isAbstractType }}"> |
| 31 <a on-click="{{ goto }}" _href="{{ url }}">{{ ref.name }}</a> | 36 <a on-click="{{ goto }}" _href="{{ url }}">{{ ref.name }}</a> |
| 32 </template> | 37 </template> |
| 33 | 38 |
| 34 <template if="{{ ref.isClosure }}"> | 39 <template if="{{ ref.isClosure }}"> |
| 35 <a on-click="{{ goto }}" _href="{{ url }}"> | 40 <a on-click="{{ goto }}" _href="{{ url }}"> |
| 36 <!-- TODO(turnidge): Switch this to fully-qualified function --> | 41 <!-- TODO(turnidge): Switch this to fully-qualified function --> |
| 37 {{ ref.closureFunc.name }} | 42 {{ ref.closureFunc.name }} |
| 38 </a> | 43 </a> |
| 39 </template> | 44 </template> |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 </div> | 108 </div> |
| 104 </div> | 109 </div> |
| 105 </div> | 110 </div> |
| 106 </curly-block> | 111 </curly-block> |
| 107 </template> | 112 </template> |
| 108 </span> | 113 </span> |
| 109 </template> | 114 </template> |
| 110 </polymer-element> | 115 </polymer-element> |
| 111 | 116 |
| 112 <script type="application/dart" src="instance_ref.dart"></script> | 117 <script type="application/dart" src="instance_ref.dart"></script> |
| OLD | NEW |