| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <link rel="import" href="annotations.html"> | 2 <link rel="import" href="annotations.html"> |
| 3 <link rel="import" href="type.html"> | 3 <link rel="import" href="type.html"> |
| 4 | 4 |
| 5 <polymer-element name="variable-heading" attributes="item"> | 5 <polymer-element name="variable-heading" attributes="item"> |
| 6 <template> | 6 <template> |
| 7 <template if="{{item.isFinal}}">final</template> | 7 <template if="{{item.isFinal}}">final</template> |
| 8 <template if="{{item.isStatic}}">static</template> | 8 <template if="{{item.isStatic}}">static</template> |
| 9 <template if="{{item.isConstant}}">const</template> | 9 <template if="{{item.isConstant}}">const</template> |
| 10 <template if="{{item.isSetter}}"> | 10 <template if="{{item.isSetter}}"> |
| 11 set | 11 set |
| 12 <b><a id="{{idName}}" href="#{{item.anchorHref}}">{{name}}</a></b>( | 12 <b><a id="{{idName}}" href="{{item.prefixedAnchorHref}}">{{name}}</a></b>( |
| 13 <dartdoc-annotation annotations="{{item.setterParameter.annotations}}"> | 13 <dartdoc-annotation annotations="{{item.setterParameter.annotations}}"> |
| 14 </dartdoc-annotation> | 14 </dartdoc-annotation> |
| 15 <dartdoc-type type="{{item.setterParameter.type}}"></dartdoc-type> | 15 <dartdoc-type type="{{item.setterParameter.type}}"></dartdoc-type> |
| 16 {{item.setterParameter.decoratedName}}) | 16 {{item.setterParameter.decoratedName}}) |
| 17 </template> | 17 </template> |
| 18 <template if="{{isNotSetter}}"> | 18 <template if="{{isNotSetter}}"> |
| 19 <dartdoc-type type="{{item.type}}"></dartdoc-type> | 19 <dartdoc-type type="{{item.type}}"></dartdoc-type> |
| 20 {{getter}} | 20 {{getter}} |
| 21 <b><a id="{{idName}}" href="#{{item.anchorHref}}">{{name}}</a></b> | 21 <b><a id="{{idName}}" href="{{item.prefixedAnchorHref}}">{{name}}</a></b> |
| 22 </template> | 22 </template> |
| 23 </template> | 23 </template> |
| 24 <script type="application/dart" src="variable-heading.dart"></script> | 24 <script type="application/dart" src="variable-heading.dart"></script> |
| 25 </polymer-element> | 25 </polymer-element> |
| OLD | NEW |