| 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="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 Loading... |
| 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 — null observed | 68 — null observed |
| 68 </template> | 69 </template> |
| 69 <template if="{{ !field.guardNullable }}"> | 70 <template if="{{ !field.guardNullable }}"> |
| 70 — null not observed | 71 — null not observed |
| 71 </template> | 72 </template> |
| 72 </template> | 73 </template> |
| 73 </div> | 74 </div> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 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> |
| OLD | NEW |