Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Side by Side Diff: runtime/observatory/lib/src/elements/object_common.html

Issue 2231313002: Avoid to list internal Arrays in _GetRetainingPath api (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fixed comment Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | runtime/observatory/tests/service/get_retaining_path_rpc_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 &lt;root&gt; 64 &lt;root&gt;
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
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>
OLDNEW
« no previous file with comments | « no previous file | runtime/observatory/tests/service/get_retaining_path_rpc_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698