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="error_view.html"> | 2 <link rel="import" href="error_view.html"> |
3 <link rel="import" href="eval_box.html"> | 3 <link rel="import" href="eval_box.html"> |
4 <link rel="import" href="eval_link.html"> | 4 <link rel="import" href="eval_link.html"> |
5 | 5 |
6 <polymer-element name="instance-view"> | 6 <polymer-element name="instance-view"> |
7 <template> | 7 <template> |
8 <link rel="stylesheet" href="css/shared.css"> | 8 <link rel="stylesheet" href="css/shared.css"> |
9 <nav-bar> | 9 <nav-bar> |
10 <top-nav-menu></top-nav-menu> | 10 <top-nav-menu></top-nav-menu> |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 <instance-ref ref="{{ instance.bound }}"> | 109 <instance-ref ref="{{ instance.bound }}"> |
110 </instance-ref> | 110 </instance-ref> |
111 </div> | 111 </div> |
112 </div> | 112 </div> |
113 </template> | 113 </template> |
114 | 114 |
115 <template if="{{ instance.isClosure }}"> | 115 <template if="{{ instance.isClosure }}"> |
116 <div class="memberItem"> | 116 <div class="memberItem"> |
117 <div class="memberName">closure function</div> | 117 <div class="memberName">closure function</div> |
118 <div class="memberValue"> | 118 <div class="memberValue"> |
119 <function-ref ref="{{ instance.function }}"> | 119 <function-ref ref="{{ instance.closureFunction }}"> |
120 </function-ref> | 120 </function-ref> |
121 </div> | 121 </div> |
122 </div> | 122 </div> |
123 <div class="memberItem"> | 123 <div class="memberItem"> |
124 <div class="memberName">closure context</div> | 124 <div class="memberName">closure context</div> |
125 <div class="memberValue"> | 125 <div class="memberValue"> |
126 <any-service-ref ref="{{ instance.context }}"> | 126 <any-service-ref ref="{{ instance.context }}"> |
127 </any-service-ref> | 127 </any-service-ref> |
128 </div> | 128 </div> |
129 </div> | 129 </div> |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
351 <div class="memberValue"> | 351 <div class="memberValue"> |
352 <any-service-ref ref="{{ instance.value }}"></any-service-ref> | 352 <any-service-ref ref="{{ instance.value }}"></any-service-ref> |
353 </div> | 353 </div> |
354 </div> | 354 </div> |
355 </template> | 355 </template> |
356 | 356 |
357 </div> | 357 </div> |
358 | 358 |
359 <div class="content-centered-big"> | 359 <div class="content-centered-big"> |
360 <template if="{{ instance.isClosure }}"> | 360 <template if="{{ instance.isClosure }}"> |
361 <source-inset location="{{ instance.function.location }}"></source-ins
et> | 361 <source-inset location="{{ instance.closureFunction.location }}"></sou
rce-inset> |
362 </template> | 362 </template> |
363 <template if="{{ instance.typeClass != null }}"> | 363 <template if="{{ instance.typeClass != null }}"> |
364 <source-inset location="{{ instance.typeClass.location }}"></source-in
set> | 364 <source-inset location="{{ instance.typeClass.location }}"></source-in
set> |
365 </template> | 365 </template> |
366 </div> | 366 </div> |
367 | 367 |
368 </template> | 368 </template> |
369 <view-footer></view-footer> | 369 <view-footer></view-footer> |
370 </template> | 370 </template> |
371 </polymer-element> | 371 </polymer-element> |
372 | 372 |
373 <script type="application/dart" src="instance_view.dart"></script> | 373 <script type="application/dart" src="instance_view.dart"></script> |
OLD | NEW |