| Index: Source/bindings/templates/interface.h
|
| diff --git a/Source/bindings/templates/interface.h b/Source/bindings/templates/interface.h
|
| index 563860ca4b56fe80876859fae3bffc6bbc8886e0..a31bdee7444f16ef7d398c2f348a96df771a58c3 100644
|
| --- a/Source/bindings/templates/interface.h
|
| +++ b/Source/bindings/templates/interface.h
|
| @@ -64,6 +64,9 @@ public:
|
| static void {{method.name}}MethodCustom(const v8::FunctionCallbackInfo<v8::Value>&);
|
| {% endfilter %}
|
| {% endfor %}
|
| + {% if has_constructor %}
|
| + static void constructorCallback(const v8::FunctionCallbackInfo<v8::Value>&);
|
| + {% endif %}
|
| {% for attribute in attributes %}
|
| {% if attribute.has_custom_getter %}{# FIXME: and not attribute.implemented_by #}
|
| {% filter conditional(attribute.conditional_string) %}
|
|
|