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

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

Issue 2244433003: Converted Observatory refs elements (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: All element tested 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
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">
3 2
4 <polymer-element name="field-view"> 3 <polymer-element name="field-view">
5 <template> 4 <template>
6 <link rel="stylesheet" href="css/shared.css"> 5 <link rel="stylesheet" href="css/shared.css">
7 <nav-bar> 6 <nav-bar>
8 <top-nav-menu></top-nav-menu> 7 <top-nav-menu></top-nav-menu>
9 <vm-nav-menu vm="{{ field.isolate.vm }}"></vm-nav-menu> 8 <vm-nav-menu vm="{{ field.isolate.vm }}"></vm-nav-menu>
10 <isolate-nav-menu isolate="{{ field.isolate }}"></isolate-nav-menu> 9 <isolate-nav-menu isolate="{{ field.isolate }}"></isolate-nav-menu>
11 <library-nav-menu library="{{ field.library }}"></library-nav-menu> 10 <library-nav-menu library="{{ field.library }}"></library-nav-menu>
12 <template if="{{ field.dartOwner is ServiceClass }}"> 11 <template if="{{ field.dartOwner is ServiceClass }}">
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 <div class="memberItem" 52 <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."> 53 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> 54 <div class="memberName">observed types</div>
56 <div class="memberValue"> 55 <div class="memberValue">
57 <template if="{{ field.guardClass == 'dynamic' }}"> 56 <template if="{{ field.guardClass == 'dynamic' }}">
58 various 57 various
59 </template> 58 </template>
60 <template if="{{ field.guardClass == 'unknown' }}"> 59 <template if="{{ field.guardClass == 'unknown' }}">
61 none 60 none
62 </template> 61 </template>
63 <template if="{{ field.guardClass != 'unknown' && 62 <template if="{{ field.guardClass != null &&
64 field.guardClass != 'dynamic' }}"> 63 field.guardClass != 'unknown' &&
64 field.guardClass != 'dynamic' }}" restamp="true">
65 <class-ref ref="{{ field.guardClass }}"></class-ref> 65 <class-ref ref="{{ field.guardClass }}"></class-ref>
66 <template if="{{ field.guardNullable }}"> 66 <template if="{{ field.guardNullable }}">
67 &mdash; null observed 67 &mdash; null observed
68 </template> 68 </template>
69 <template if="{{ !field.guardNullable }}"> 69 <template if="{{ !field.guardNullable }}">
70 &mdash; null not observed 70 &mdash; null not observed
71 </template> 71 </template>
72 </template> 72 </template>
73 </div> 73 </div>
74 </div> 74 </div>
(...skipping 15 matching lines...) Expand all
90 startPos="{{ field.location.tokenPos }}" 90 startPos="{{ field.location.tokenPos }}"
91 endPos="{{ field.location.tokenPos }}"> 91 endPos="{{ field.location.tokenPos }}">
92 </script-inset> 92 </script-inset>
93 </div> 93 </div>
94 94
95 <view-footer></view-footer> 95 <view-footer></view-footer>
96 </template> 96 </template>
97 </polymer-element> 97 </polymer-element>
98 98
99 <script type="application/dart" src="field_view.dart"></script> 99 <script type="application/dart" src="field_view.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698