| 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="field_ref.html"> | 4 <link rel="import" href="field_ref.html"> |
| 5 <link rel="import" href="function_ref.html"> | 5 <link rel="import" href="function_ref.html"> |
| 6 <link rel="import" href="inbound_reference.html"> | 6 <link rel="import" href="inbound_reference.html"> |
| 7 <link rel="import" href="instance_ref.html"> | 7 <link rel="import" href="instance_ref.html"> |
| 8 <link rel="import" href="observatory_element.html"> | 8 <link rel="import" href="observatory_element.html"> |
| 9 <link rel="import" href="nav_bar.html"> | 9 <link rel="import" href="nav_bar.html"> |
| 10 <link rel="import" href="eval_link.html"> | 10 <link rel="import" href="eval_link.html"> |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 </template> | 39 </template> |
| 40 </div> | 40 </div> |
| 41 </div> | 41 </div> |
| 42 | 42 |
| 43 <div class="memberItem"> | 43 <div class="memberItem"> |
| 44 <div class="memberName">retaining path</div> | 44 <div class="memberName">retaining path</div> |
| 45 <div class="memberValue"> | 45 <div class="memberValue"> |
| 46 <template if="{{ path == null }}"> | 46 <template if="{{ path == null }}"> |
| 47 <eval-link callback="{{ retainingPath }}" | 47 <eval-link callback="{{ retainingPath }}" |
| 48 label="[find]" | 48 label="[find]" |
| 49 expr="10"> | 49 expr="20"> |
| 50 </eval-link> | 50 </eval-link> |
| 51 </template> | 51 </template> |
| 52 <template if="{{ path != null }}"> | 52 <template if="{{ path != null }}"> |
| 53 <template repeat="{{ element in path['elements'] }}"> | 53 <template repeat="{{ element in path['elements'] }}"> |
| 54 <div class="memberItem"> | 54 <div class="memberItem"> |
| 55 <div class="memberName">[{{ element['index']}}]</div> | 55 <div class="memberName">[{{ element['index']}}]</div> |
| 56 <div class="memberValue"> | 56 <div class="memberValue"> |
| 57 <any-service-ref ref="{{ element['value'] }}"></any-service-ref> | |
| 58 <template if="{{ element['parentField'] != null }}"> | 57 <template if="{{ element['parentField'] != null }}"> |
| 59 in <field-ref ref="{{ element['parentField'] }}"></field-ref>
of | 58 from <field-ref ref="{{ element['parentField'] }}"></field-ref
> of |
| 60 </template> | 59 </template> |
| 61 <template if="{{ element['parentListIndex'] != null }}"> | 60 <template if="{{ element['parentListIndex'] != null }}"> |
| 62 in [{{ element['parentListIndex'] }}] of | 61 from [{{ element['parentListIndex'] }}] of |
| 63 </template> | 62 </template> |
| 63 <template if="{{ element['_parentWordOffset'] != null }}"> |
| 64 from word[{{ element['_parentWordOffset'] }}] of |
| 65 </template> |
| 66 <any-service-ref ref="{{ element['value'] }}"></any-service-ref> |
| 64 </div> | 67 </div> |
| 65 </div> | 68 </div> |
| 66 </template> | 69 </template> |
| 67 <template if="{{ path['length'] > path['elements'].length }}"> | 70 <template if="{{ path['length'] > path['elements'].length }}"> |
| 68 showing {{ path['elements'].length }} of {{ path['length'] }} | 71 showing {{ path['elements'].length }} of {{ path['length'] }} |
| 69 <eval-link | 72 <eval-link |
| 70 callback="{{ retainingPath }}" | 73 callback="{{ retainingPath }}" |
| 71 label="[find more]" | 74 label="[find more]" |
| 72 expr="{{ path['elements'].length * 2 }}"> | 75 expr="{{ path['elements'].length * 2 }}"> |
| 73 </eval-link> | 76 </eval-link> |
| (...skipping 17 matching lines...) Expand all Loading... |
| 91 </template> | 94 </template> |
| 92 </template> | 95 </template> |
| 93 </div> | 96 </div> |
| 94 </div> | 97 </div> |
| 95 | 98 |
| 96 </div> | 99 </div> |
| 97 </template> | 100 </template> |
| 98 </polymer-element> | 101 </polymer-element> |
| 99 | 102 |
| 100 <script type="application/dart" src="object_common.dart"></script> | 103 <script type="application/dart" src="object_common.dart"></script> |
| OLD | NEW |