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

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

Issue 2243983002: Avoid polymer partial initialization of bindings (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: 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 | no next file » | 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="instance_ref.html"> 2 <link rel="import" href="instance_ref.html">
3 3
4 <polymer-element name="field-view"> 4 <polymer-element name="field-view">
5 <template> 5 <template>
6 <link rel="stylesheet" href="css/shared.css"> 6 <link rel="stylesheet" href="css/shared.css">
7 <nav-bar> 7 <nav-bar>
8 <top-nav-menu></top-nav-menu> 8 <top-nav-menu></top-nav-menu>
9 <vm-nav-menu vm="{{ field.isolate.vm }}"></vm-nav-menu> 9 <vm-nav-menu vm="{{ field.isolate.vm }}"></vm-nav-menu>
10 <isolate-nav-menu isolate="{{ field.isolate }}"></isolate-nav-menu> 10 <isolate-nav-menu isolate="{{ field.isolate }}"></isolate-nav-menu>
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 <div class="memberItem" 53 <div class="memberItem"
54 title="The types observed for this field at runtime. Fields that are observed to have a single type at runtime or to never be null may allow for additional optimization."> 54 title="The types observed for this field at runtime. Fields that are observed to have a single type at runtime or to never be null may allow for additional optimization.">
55 <div class="memberName">observed types</div> 55 <div class="memberName">observed types</div>
56 <div class="memberValue"> 56 <div class="memberValue">
57 <template if="{{ field.guardClass == 'dynamic' }}"> 57 <template if="{{ field.guardClass == 'dynamic' }}">
58 various 58 various
59 </template> 59 </template>
60 <template if="{{ field.guardClass == 'unknown' }}"> 60 <template if="{{ field.guardClass == 'unknown' }}">
61 none 61 none
62 </template> 62 </template>
63 <template if="{{ field.guardClass != 'unknown' && 63 <template if="{{ field.guardClass != null &&
64 field.guardClass != 'unknown' &&
64 field.guardClass != 'dynamic' }}"> 65 field.guardClass != 'dynamic' }}">
65 <class-ref ref="{{ field.guardClass }}"></class-ref> 66 <class-ref ref="{{ field.guardClass }}"></class-ref>
66 <template if="{{ field.guardNullable }}"> 67 <template if="{{ field.guardNullable }}">
67 &mdash; null observed 68 &mdash; null observed
68 </template> 69 </template>
69 <template if="{{ !field.guardNullable }}"> 70 <template if="{{ !field.guardNullable }}">
70 &mdash; null not observed 71 &mdash; null not observed
71 </template> 72 </template>
72 </template> 73 </template>
73 </div> 74 </div>
(...skipping 16 matching lines...) Expand all
90 startPos="{{ field.location.tokenPos }}" 91 startPos="{{ field.location.tokenPos }}"
91 endPos="{{ field.location.tokenPos }}"> 92 endPos="{{ field.location.tokenPos }}">
92 </script-inset> 93 </script-inset>
93 </div> 94 </div>
94 95
95 <view-footer></view-footer> 96 <view-footer></view-footer>
96 </template> 97 </template>
97 </polymer-element> 98 </polymer-element>
98 99
99 <script type="application/dart" src="field_view.dart"></script> 100 <script type="application/dart" src="field_view.dart"></script>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698