| 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="class_ref.html"> | 2 <link rel="import" href="class_ref.html"> |
| 3 <link rel="import" href="error_view.html"> | 3 <link rel="import" href="error_view.html"> |
| 4 <link rel="import" href="eval_box.html"> | 4 <link rel="import" href="eval_box.html"> |
| 5 <link rel="import" href="eval_link.html"> | 5 <link rel="import" href="eval_link.html"> |
| 6 <link rel="import" href="field_ref.html"> | 6 <link rel="import" href="field_ref.html"> |
| 7 <link rel="import" href="function_ref.html"> | 7 <link rel="import" href="function_ref.html"> |
| 8 <link rel="import" href="inbound_reference.html"> | 8 <link rel="import" href="inbound_reference.html"> |
| 9 <link rel="import" href="instance_ref.html"> | 9 <link rel="import" href="instance_ref.html"> |
| 10 <link rel="import" href="observatory_element.html"> | 10 <link rel="import" href="observatory_element.html"> |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 </function-ref> | 88 </function-ref> |
| 89 </div> | 89 </div> |
| 90 </div> | 90 </div> |
| 91 <div class="memberItem"> | 91 <div class="memberItem"> |
| 92 <div class="memberName">closure context</div> | 92 <div class="memberName">closure context</div> |
| 93 <div class="memberValue"> | 93 <div class="memberValue"> |
| 94 <any-service-ref ref="{{ instance.context }}"> | 94 <any-service-ref ref="{{ instance.context }}"> |
| 95 </any-service-ref> | 95 </any-service-ref> |
| 96 </div> | 96 </div> |
| 97 </div> | 97 </div> |
| 98 <div class="memberItem"> |
| 99 <div class="memberName">closure breakpoint</div> |
| 100 <div class="memberValue"> |
| 101 <template if="{{ instance.activationBreakpoint == null }}"> |
| 102 <action-link callback="{{ setBreakOnActivation }}" |
| 103 label="break on activation"> |
| 104 </action-link> |
| 105 </template> |
| 106 <template if="{{ instance.activationBreakpoint != null }}"> |
| 107 {{ instance.activationBreakpoint.toString() }} |
| 108 <action-link callback="{{ clearBreakOnActivation }}" |
| 109 label="remove"> |
| 110 </action-link> |
| 111 </template> |
| 112 </div> |
| 113 </div> |
| 98 </template> | 114 </template> |
| 99 | 115 |
| 100 <template if="{{ instance.isWeakProperty }}"> | 116 <template if="{{ instance.isWeakProperty }}"> |
| 101 <div class="memberItem"> | 117 <div class="memberItem"> |
| 102 <div class="memberName">key</div> | 118 <div class="memberName">key</div> |
| 103 <div class="memberValue"> | 119 <div class="memberValue"> |
| 104 <any-service-ref ref="{{ instance.key }}"> | 120 <any-service-ref ref="{{ instance.key }}"> |
| 105 </any-service-ref> | 121 </any-service-ref> |
| 106 </div> | 122 </div> |
| 107 </div> | 123 </div> |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 </template> | 230 </template> |
| 215 | 231 |
| 216 </div> | 232 </div> |
| 217 | 233 |
| 218 </template> | 234 </template> |
| 219 <view-footer></view-footer> | 235 <view-footer></view-footer> |
| 220 </template> | 236 </template> |
| 221 </polymer-element> | 237 </polymer-element> |
| 222 | 238 |
| 223 <script type="application/dart" src="instance_view.dart"></script> | 239 <script type="application/dart" src="instance_view.dart"></script> |
| OLD | NEW |