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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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.function }}"> | 87 <function-ref ref="{{ instance.function }}"> |
88 </function-ref> | 88 </function-ref> |
89 </div> | 89 </div> |
90 </div> | 90 </div> |
91 </template> | |
92 <template if="{{ instance.isClosure }}"> | |
93 <div class="memberItem"> | 91 <div class="memberItem"> |
94 <div class="memberName">closure context</div> | 92 <div class="memberName">closure context</div> |
95 <div class="memberValue"> | 93 <div class="memberValue"> |
96 <any-service-ref ref="{{ instance.context }}"> | 94 <any-service-ref ref="{{ instance.context }}"> |
97 </any-service-ref> | 95 </any-service-ref> |
98 </div> | 96 </div> |
99 </div> | 97 </div> |
100 </template> | 98 </template> |
101 | 99 |
102 <template if="{{ instance.isWeakProperty }}"> | 100 <template if="{{ instance.isWeakProperty }}"> |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 | 179 |
182 <div class="content"> | 180 <div class="content"> |
183 <eval-box callback="{{ evaluate }}"></eval-box> | 181 <eval-box callback="{{ evaluate }}"></eval-box> |
184 </div> | 182 </div> |
185 </template> | 183 </template> |
186 <view-footer></view-footer> | 184 <view-footer></view-footer> |
187 </template> | 185 </template> |
188 </polymer-element> | 186 </polymer-element> |
189 | 187 |
190 <script type="application/dart" src="instance_view.dart"></script> | 188 <script type="application/dart" src="instance_view.dart"></script> |
OLD | NEW |