| 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"> | 3 <link rel="import" href="field_ref.html"> |
| 4 <link rel="import" href="inbound_reference.html"> | 4 <link rel="import" href="inbound_reference.html"> |
| 5 <link rel="import" href="instance_ref.html"> | 5 <link rel="import" href="instance_ref.html"> |
| 6 <link rel="import" href="eval_link.html"> | 6 <link rel="import" href="eval_link.html"> |
| 7 | 7 |
| 8 <polymer-element name="object-common"> | 8 <polymer-element name="object-common"> |
| 9 <template> | 9 <template> |
| 10 <link rel="stylesheet" href="css/shared.css"> | 10 <link rel="stylesheet" href="css/shared.css"> |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 label="[find]" | 58 label="[find]" |
| 59 expr="20"> | 59 expr="20"> |
| 60 </eval-link> | 60 </eval-link> |
| 61 </template> | 61 </template> |
| 62 <template if="{{ path != null }}"> | 62 <template if="{{ path != null }}"> |
| 63 <template if="{{ path['length'] == 0 }}"> | 63 <template if="{{ path['length'] == 0 }}"> |
| 64 <root> | 64 <root> |
| 65 </template> | 65 </template> |
| 66 <template repeat="{{ element in path['elements'] }}"> | 66 <template repeat="{{ element in path['elements'] }}"> |
| 67 <div class="memberItem"> | 67 <div class="memberItem"> |
| 68 <div class="memberName">[{{ element['index']}}]</div> | 68 <div class="memberName">[{{ path['elements'].indexOf(element) }}]<
/div> |
| 69 <div class="memberValue"> | 69 <div class="memberValue"> |
| 70 <template if="{{ element['parentField'] != null }}"> | 70 <template if="{{ element['parentField'] != null }}"> |
| 71 from <any-service-ref ref="{{ element['parentField'] }}"></any
-service-ref> of | 71 from <any-service-ref ref="{{ element['parentField'] }}"></any
-service-ref> of |
| 72 </template> | 72 </template> |
| 73 <template if="{{ element['parentListIndex'] != null }}"> | 73 <template if="{{ element['parentListIndex'] != null }}"> |
| 74 from [{{ element['parentListIndex'] }}] of | 74 from [{{ element['parentListIndex'] }}] of |
| 75 </template> | 75 </template> |
| 76 <template if="{{ element['parentMapKey'] != null }}"> |
| 77 from [<any-service-ref ref="{{ element['parentMapKey'] }}"></a
ny-service-ref>] of |
| 78 </template> |
| 76 <template if="{{ element['_parentWordOffset'] != null }}"> | 79 <template if="{{ element['_parentWordOffset'] != null }}"> |
| 77 from word[{{ element['_parentWordOffset'] }}] of | 80 from word[{{ element['_parentWordOffset'] }}] of |
| 78 </template> | 81 </template> |
| 79 <any-service-ref ref="{{ element['value'] }}"></any-service-ref> | 82 <any-service-ref ref="{{ element['value'] }}"></any-service-ref> |
| 80 </div> | 83 </div> |
| 81 </div> | 84 </div> |
| 82 </template> | 85 </template> |
| 83 <template if="{{ path['length'] > path['elements'].length }}"> | 86 <template if="{{ path['length'] > path['elements'].length }}"> |
| 84 showing {{ path['elements'].length }} of {{ path['length'] }} | 87 showing {{ path['elements'].length }} of {{ path['length'] }} |
| 85 <eval-link | 88 <eval-link |
| (...skipping 24 matching lines...) Expand all Loading... |
| 110 </template> | 113 </template> |
| 111 </template> | 114 </template> |
| 112 </div> | 115 </div> |
| 113 </div> | 116 </div> |
| 114 | 117 |
| 115 </div> | 118 </div> |
| 116 </template> | 119 </template> |
| 117 </polymer-element> | 120 </polymer-element> |
| 118 | 121 |
| 119 <script type="application/dart" src="object_common.dart"></script> | 122 <script type="application/dart" src="object_common.dart"></script> |
| OLD | NEW |