| Index: Source/bindings/templates/interface_base.cpp
|
| diff --git a/Source/bindings/templates/interface_base.cpp b/Source/bindings/templates/interface_base.cpp
|
| index c1816fc70cd9afcd0a67ae3e125bcbe537e786de..48b9ad75fe0ede9285f7a2faccac439d3fbfff52 100644
|
| --- a/Source/bindings/templates/interface_base.cpp
|
| +++ b/Source/bindings/templates/interface_base.cpp
|
| @@ -67,6 +67,8 @@ template <typename T> void V8_USE(T) { }
|
| {% endif %}
|
| {{attribute_getter_callback(attribute, world_suffix)}}
|
| {% endfor %}
|
| +{# FIXME: merge these 2 for loops #}
|
| +{% for world_suffix in attribute.world_suffixes %}
|
| {% if attribute.do_generate_setter %}
|
| {{attribute_setter(attribute, world_suffix)}}
|
| {% endif %}
|
| @@ -74,6 +76,7 @@ template <typename T> void V8_USE(T) { }
|
| {{attribute_setter_callback(attribute, world_suffix)}}
|
| {% endif %}
|
| {% endfor %}
|
| +{% endfor %}
|
| } // namespace {{cpp_class_name}}V8Internal
|
|
|
| {% block class_attributes %}{% endblock %}
|
|
|