| Index: Source/bindings/templates/interface.cpp | 
| diff --git a/Source/bindings/templates/interface.cpp b/Source/bindings/templates/interface.cpp | 
| index 7078e454decd8f034d5359708d056b968aef5bfb..9f42310831bda4ca7f9470428942115cfdb5525c 100644 | 
| --- a/Source/bindings/templates/interface.cpp | 
| +++ b/Source/bindings/templates/interface.cpp | 
| @@ -51,13 +51,14 @@ | 
|  | 
|  | 
| {##############################################################################} | 
| +{% from 'methods.cpp' import method_length %} | 
| {% macro method_configuration(method) %} | 
| {% set method_callback = | 
| '%sV8Internal::%sMethodCallback' % (cpp_class, method.name) %} | 
| {% set method_callback_for_main_world = | 
| '%sV8Internal::%sMethodCallbackForMainWorld' % (cpp_class, method.name) | 
| if method.is_per_world_bindings else '0' %} | 
| -{"{{method.name}}", {{method_callback}}, {{method_callback_for_main_world}}, {{method.number_of_required_or_variadic_arguments}}} | 
| +{"{{method.name}}", {{method_callback}}, {{method_callback_for_main_world}}, {{method_length(method)}}} | 
| {%- endmacro %} | 
|  | 
|  | 
| @@ -1078,7 +1079,7 @@ static void configure{{v8_class}}Template(v8::Handle<v8::FunctionTemplate> funct | 
| (cpp_class, method.name, world_suffix) %} | 
| {% set property_attribute = 'static_cast<v8::PropertyAttribute>(%s)' % | 
| ' | '.join(method.property_attributes) %} | 
| -{{method.function_template}}->Set(v8AtomicString(isolate, "{{method.name}}"), v8::FunctionTemplate::New(isolate, {{method_callback}}, v8Undefined(), {{method.signature}}, {{method.number_of_required_or_variadic_arguments}}){% if method.property_attributes %}, {{property_attribute}}{% endif %}); | 
| +{{method.function_template}}->Set(v8AtomicString(isolate, "{{method.name}}"), v8::FunctionTemplate::New(isolate, {{method_callback}}, v8Undefined(), {{method.signature}}, {{method_length(method)}}){% if method.property_attributes %}, {{property_attribute}}{% endif %}); | 
| {%- endmacro %} | 
|  | 
|  | 
|  |