| Index: Source/bindings/templates/interface_base.cpp
|
| diff --git a/Source/bindings/templates/interface_base.cpp b/Source/bindings/templates/interface_base.cpp
|
| index b1f61d0531e2e27d908f01df42bca1906bf46659..59f0c89f29a7f864c0df0f51714ef8e6baf003dd 100644
|
| --- a/Source/bindings/templates/interface_base.cpp
|
| +++ b/Source/bindings/templates/interface_base.cpp
|
| @@ -393,6 +393,8 @@ static void install{{v8_class}}Template(v8::Handle<v8::FunctionTemplate> functio
|
| {% for method in custom_registration_methods %}
|
| {# install_custom_signature #}
|
| {% filter conditional(method.conditional_string) %}
|
| + {% filter per_context_enabled(method.per_context_enabled_function) %}
|
| + {% filter exposed(method.exposed_test) %}
|
| {% filter runtime_enabled(method.overloads.runtime_enabled_function_all
|
| if method.overloads else
|
| method.runtime_enabled_function) %}
|
| @@ -402,6 +404,8 @@ static void install{{v8_class}}Template(v8::Handle<v8::FunctionTemplate> functio
|
| {{install_custom_signature(method) | indent}}
|
| {% endif %}{# is_do_not_check_security #}
|
| {% endfilter %}{# runtime_enabled() #}
|
| + {% endfilter %}{# exposed() #}
|
| + {% endfilter %}{# per_context_enabled() #}
|
| {% endfilter %}{# conditional() #}
|
| {% endfor %}
|
| {% for attribute in attributes if attribute.is_static %}
|
|
|