OLD | NEW |
1 {##############################################################################} | 1 {##############################################################################} |
2 {% macro generate_method(method, world_suffix) %} | 2 {% macro generate_method(method, world_suffix) %} |
3 {% filter conditional(method.conditional_string) %} | 3 {% filter conditional(method.conditional_string) %} |
4 static void {{method.name}}{{method.overload_index}}Method{{world_suffix}}(const
v8::FunctionCallbackInfo<v8::Value>& info) | 4 static void {{method.name}}{{method.overload_index}}Method{{world_suffix}}(const
v8::FunctionCallbackInfo<v8::Value>& info) |
5 { | 5 { |
6 {# Local variables #} | 6 {# Local variables #} |
7 {% if method.has_exception_state %} | 7 {% if method.has_exception_state %} |
8 ExceptionState exceptionState(ExceptionState::ExecutionContext, "{{method.na
me}}", "{{interface_name}}", info.Holder(), info.GetIsolate()); | 8 ExceptionState exceptionState(ExceptionState::ExecutionContext, "{{method.na
me}}", "{{interface_name}}", info.Holder(), info.GetIsolate()); |
9 {% endif %} | 9 {% endif %} |
10 {% if method.number_of_required_arguments %} | 10 {% if method.number_of_required_arguments %} |
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 | 361 |
362 | 362 |
363 {##############################################################################} | 363 {##############################################################################} |
364 {% macro generate_constructor(constructor) %} | 364 {% macro generate_constructor(constructor) %} |
365 static void constructor{{constructor.overload_index}}(const v8::FunctionCallback
Info<v8::Value>& info) | 365 static void constructor{{constructor.overload_index}}(const v8::FunctionCallback
Info<v8::Value>& info) |
366 { | 366 { |
367 {% if constructor.has_exception_state %} | 367 {% if constructor.has_exception_state %} |
368 ExceptionState exceptionState(ExceptionState::ConstructionContext, "{{interf
ace_name}}", info.Holder(), info.GetIsolate()); | 368 ExceptionState exceptionState(ExceptionState::ConstructionContext, "{{interf
ace_name}}", info.Holder(), info.GetIsolate()); |
369 {% endif %} | 369 {% endif %} |
370 {% if interface_length and not constructor.overload_index %} | 370 {% if interface_length and not constructor.overload_index %} |
371 {# FIXME: remove this UNLIKELY: constructors are heavy, so no difference. #} | 371 {# FIXME: remove UNLIKELY: constructors are expensive, so no difference. #} |
372 if (UNLIKELY(info.Length() < {{interface_length}})) { | 372 if (UNLIKELY(info.Length() < {{interface_length}})) { |
373 {{throw_type_error(constructor, | 373 {{throw_type_error(constructor, |
374 'ExceptionMessages::notEnoughArguments(%s, info.Length())' % | 374 'ExceptionMessages::notEnoughArguments(%s, info.Length())' % |
375 interface_length) | indent(8)}} | 375 interface_length) | indent(8)}} |
376 return; | 376 return; |
377 } | 377 } |
378 {% endif %} | 378 {% endif %} |
379 {% for argument in constructor.arguments %} | 379 {% for argument in constructor.arguments %} |
380 {{generate_argument(constructor, argument) | indent}} | 380 {{generate_argument(constructor, argument) | indent}} |
381 {% endfor %} | 381 {% endfor %} |
382 {% if is_constructor_call_with_execution_context %} | 382 {% if is_constructor_call_with_execution_context %} |
383 ExecutionContext* context = currentExecutionContext(info.GetIsolate()); | 383 ExecutionContext* context = currentExecutionContext(info.GetIsolate()); |
384 {% endif %} | 384 {% endif %} |
385 {% if is_constructor_call_with_document %} | 385 {% if is_constructor_call_with_document %} |
386 Document& document = *toDocument(currentExecutionContext(info.GetIsolate()))
; | 386 Document& document = *toDocument(currentExecutionContext(info.GetIsolate()))
; |
387 {% endif %} | 387 {% endif %} |
388 {{ref_ptr}}<{{cpp_class}}> impl = {{cpp_class}}::create({{constructor.argume
nt_list | join(', ')}}); | 388 {{ref_ptr}}<{{cpp_class}}> impl = {{cpp_class}}::create({{constructor.argume
nt_list | join(', ')}}); |
389 v8::Handle<v8::Object> wrapper = info.Holder(); | 389 v8::Handle<v8::Object> wrapper = info.Holder(); |
390 {% if is_constructor_raises_exception %} | 390 {% if is_constructor_raises_exception %} |
391 if (exceptionState.throwIfNeeded()) | 391 if (exceptionState.throwIfNeeded()) |
392 return; | 392 return; |
393 {% endif %} | 393 {% endif %} |
394 | 394 |
395 {# FIXME: Should probably be Independent unless [ActiveDOMObject] | 395 V8DOMWrapper::associateObjectWithWrapper<{{v8_class}}>(impl.release(), &{{v8
_class}}::wrapperTypeInfo, wrapper, info.GetIsolate(), {{wrapper_configuration}}
); |
396 or [DependentLifetime]. #} | |
397 V8DOMWrapper::associateObjectWithWrapper<{{v8_class}}>(impl.release(), &{{v8
_class}}::wrapperTypeInfo, wrapper, info.GetIsolate(), WrapperConfiguration::Dep
endent); | |
398 v8SetReturnValue(info, wrapper); | 396 v8SetReturnValue(info, wrapper); |
399 } | 397 } |
400 {% endmacro %} | 398 {% endmacro %} |
401 | 399 |
402 | 400 |
403 {##############################################################################} | 401 {##############################################################################} |
404 {% macro named_constructor_callback(constructor) %} | 402 {% macro named_constructor_callback(constructor) %} |
405 static void {{v8_class}}ConstructorCallback(const v8::FunctionCallbackInfo<v8::V
alue>& info) | 403 static void {{v8_class}}ConstructorCallback(const v8::FunctionCallbackInfo<v8::V
alue>& info) |
406 { | 404 { |
407 if (!info.IsConstructCall()) { | 405 if (!info.IsConstructCall()) { |
(...skipping 27 matching lines...) Expand all Loading... |
435 {% for argument in constructor.arguments %} | 433 {% for argument in constructor.arguments %} |
436 {{generate_argument(constructor, argument) | indent}} | 434 {{generate_argument(constructor, argument) | indent}} |
437 {% endfor %} | 435 {% endfor %} |
438 RefPtr<{{cpp_class}}> impl = {{cpp_class}}::createForJSConstructor({{constru
ctor.argument_list | join(', ')}}); | 436 RefPtr<{{cpp_class}}> impl = {{cpp_class}}::createForJSConstructor({{constru
ctor.argument_list | join(', ')}}); |
439 v8::Handle<v8::Object> wrapper = info.Holder(); | 437 v8::Handle<v8::Object> wrapper = info.Holder(); |
440 {% if is_constructor_raises_exception %} | 438 {% if is_constructor_raises_exception %} |
441 if (exceptionState.throwIfNeeded()) | 439 if (exceptionState.throwIfNeeded()) |
442 return; | 440 return; |
443 {% endif %} | 441 {% endif %} |
444 | 442 |
445 V8DOMWrapper::associateObjectWithWrapper<{{v8_class}}>(impl.release(), &{{v8
_class}}Constructor::wrapperTypeInfo, wrapper, info.GetIsolate(), WrapperConfigu
ration::Dependent); | 443 V8DOMWrapper::associateObjectWithWrapper<{{v8_class}}>(impl.release(), &{{v8
_class}}Constructor::wrapperTypeInfo, wrapper, info.GetIsolate(), {{wrapper_conf
iguration}}); |
446 v8SetReturnValue(info, wrapper); | 444 v8SetReturnValue(info, wrapper); |
447 } | 445 } |
448 {% endmacro %} | 446 {% endmacro %} |
OLD | NEW |