| OLD | NEW |
| 1 {% extends 'interface_base_cpp.template' %} | 1 {% extends 'interface_base_cpp.template' %} |
| 2 | 2 |
| 3 | 3 |
| 4 {# TODO(terry): Implement setter and deleter too #} | 4 {# TODO(terry): Implement setter and deleter too #} |
| 5 | 5 |
| 6 | 6 |
| 7 {##############################################################################} | 7 {##############################################################################} |
| 8 {% block indexed_property_getter %} | 8 {% block indexed_property_getter %} |
| 9 {% if indexed_property_getter and not indexed_property_getter.is_custom %} | 9 {% if indexed_property_getter and not indexed_property_getter.is_custom %} |
| 10 {% set getter = indexed_property_getter %} | 10 {% set getter = indexed_property_getter %} |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 return; | 151 return; |
| 152 fail: | 152 fail: |
| 153 Dart_ThrowException(exception); | 153 Dart_ThrowException(exception); |
| 154 ASSERT_NOT_REACHED(); | 154 ASSERT_NOT_REACHED(); |
| 155 } | 155 } |
| 156 {% endif %} | 156 {% endif %} |
| 157 {% endblock %} | 157 {% endblock %} |
| 158 | 158 |
| 159 | 159 |
| 160 {##############################################################################} | 160 {##############################################################################} |
| OLD | NEW |