| 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="field_ref.html"> | |
| 4 <link rel="import" href="inbound_reference.html"> | 3 <link rel="import" href="inbound_reference.html"> |
| 5 <link rel="import" href="instance_ref.html"> | |
| 6 <link rel="import" href="eval_link.html"> | 4 <link rel="import" href="eval_link.html"> |
| 7 | 5 |
| 8 <polymer-element name="object-common"> | 6 <polymer-element name="object-common"> |
| 9 <template> | 7 <template> |
| 10 <link rel="stylesheet" href="css/shared.css"> | 8 <link rel="stylesheet" href="css/shared.css"> |
| 11 <div class="memberList"> | 9 <div class="memberList"> |
| 12 | 10 |
| 13 <div class="memberItem"> | 11 <div class="memberItem"> |
| 14 <div class="memberName">class</div> | 12 <div class="memberName">class</div> |
| 15 <div class="memberValue"> | 13 <div class="memberValue"> |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 label="[find]" | 56 label="[find]" |
| 59 expr="20"> | 57 expr="20"> |
| 60 </eval-link> | 58 </eval-link> |
| 61 </template> | 59 </template> |
| 62 <template if="{{ path != null }}"> | 60 <template if="{{ path != null }}"> |
| 63 <template if="{{ path['length'] == 0 }}"> | 61 <template if="{{ path['length'] == 0 }}"> |
| 64 <root> | 62 <root> |
| 65 </template> | 63 </template> |
| 66 <template repeat="{{ element in path['elements'] }}"> | 64 <template repeat="{{ element in path['elements'] }}"> |
| 67 <div class="memberItem"> | 65 <div class="memberItem"> |
| 68 <div class="memberName">[{{ element['index']}}]</div> | 66 <div class="memberName">[{{ path['elements'].indexOf(element) }}]<
/div> |
| 69 <div class="memberValue"> | 67 <div class="memberValue"> |
| 70 <template if="{{ element['parentField'] != null }}"> | 68 <template if="{{ element['parentField'] != null }}"> |
| 71 from <any-service-ref ref="{{ element['parentField'] }}"></any
-service-ref> of | 69 from <any-service-ref ref="{{ element['parentField'] }}"></any
-service-ref> of |
| 72 </template> | 70 </template> |
| 73 <template if="{{ element['parentListIndex'] != null }}"> | 71 <template if="{{ element['parentListIndex'] != null }}"> |
| 74 from [{{ element['parentListIndex'] }}] of | 72 from [{{ element['parentListIndex'] }}] of |
| 75 </template> | 73 </template> |
| 76 <template if="{{ element['_parentWordOffset'] != null }}"> | 74 <template if="{{ element['_parentWordOffset'] != null }}"> |
| 77 from word[{{ element['_parentWordOffset'] }}] of | 75 from word[{{ element['_parentWordOffset'] }}] of |
| 78 </template> | 76 </template> |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 </template> | 108 </template> |
| 111 </template> | 109 </template> |
| 112 </div> | 110 </div> |
| 113 </div> | 111 </div> |
| 114 | 112 |
| 115 </div> | 113 </div> |
| 116 </template> | 114 </template> |
| 117 </polymer-element> | 115 </polymer-element> |
| 118 | 116 |
| 119 <script type="application/dart" src="object_common.dart"></script> | 117 <script type="application/dart" src="object_common.dart"></script> |
| OLD | NEW |