| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 <class-ref ref="{{ instance.typeClass }}"> | 77 <class-ref ref="{{ instance.typeClass }}"> |
| 78 </class-ref> | 78 </class-ref> |
| 79 </div> | 79 </div> |
| 80 </div> | 80 </div> |
| 81 </template> | 81 </template> |
| 82 | 82 |
| 83 <template if="{{ instance.isClosure }}"> | 83 <template if="{{ instance.isClosure }}"> |
| 84 <div class="memberItem"> | 84 <div class="memberItem"> |
| 85 <div class="memberName">closure function</div> | 85 <div class="memberName">closure function</div> |
| 86 <div class="memberValue"> | 86 <div class="memberValue"> |
| 87 <function-ref ref="{{ instance.closureFunc }}"> | 87 <function-ref ref="{{ instance.function }}"> |
| 88 </function-ref> | 88 </function-ref> |
| 89 </div> | 89 </div> |
| 90 </div> | 90 </div> |
| 91 </template> | 91 </template> |
| 92 <template if="{{ instance.isClosure }}"> | 92 <template if="{{ instance.isClosure }}"> |
| 93 <div class="memberItem"> | 93 <div class="memberItem"> |
| 94 <div class="memberName">closure context</div> | 94 <div class="memberName">closure context</div> |
| 95 <div class="memberValue"> | 95 <div class="memberValue"> |
| 96 <any-service-ref ref="{{ instance.closureCtxt }}"> | 96 <any-service-ref ref="{{ instance.context }}"> |
| 97 </any-service-ref> | 97 </any-service-ref> |
| 98 </div> | 98 </div> |
| 99 </div> | 99 </div> |
| 100 </template> | 100 </template> |
| 101 | 101 |
| 102 <template if="{{ instance.isWeakProperty }}"> | 102 <template if="{{ instance.isWeakProperty }}"> |
| 103 <div class="memberItem"> | 103 <div class="memberItem"> |
| 104 <div class="memberName">key</div> | 104 <div class="memberName">key</div> |
| 105 <div class="memberValue"> | 105 <div class="memberValue"> |
| 106 <any-service-ref ref="{{ instance.key }}"> | 106 <any-service-ref ref="{{ instance.key }}"> |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 | 181 |
| 182 <div class="content"> | 182 <div class="content"> |
| 183 <eval-box callback="{{ evaluate }}"></eval-box> | 183 <eval-box callback="{{ evaluate }}"></eval-box> |
| 184 </div> | 184 </div> |
| 185 </template> | 185 </template> |
| 186 <view-footer></view-footer> | 186 <view-footer></view-footer> |
| 187 </template> | 187 </template> |
| 188 </polymer-element> | 188 </polymer-element> |
| 189 | 189 |
| 190 <script type="application/dart" src="instance_view.dart"></script> | 190 <script type="application/dart" src="instance_view.dart"></script> |
| OLD | NEW |