| Index: Source/bindings/tests/results/V8TestInterfaceNamedConstructor.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestInterfaceNamedConstructor.cpp b/Source/bindings/tests/results/V8TestInterfaceNamedConstructor.cpp
|
| index 24a1c98c0be87429082da8fdb7db8e3f87ec7025..d908b95ab999c1c53fec8a0f7ae8508af8f2010e 100644
|
| --- a/Source/bindings/tests/results/V8TestInterfaceNamedConstructor.cpp
|
| +++ b/Source/bindings/tests/results/V8TestInterfaceNamedConstructor.cpp
|
| @@ -111,7 +111,11 @@ static void V8TestInterfaceNamedConstructorConstructorCallback(const v8::Functio
|
| TONATIVE_VOID_INTERNAL(defaultUndefinedOptionalBooleanArg, info[1]->BooleanValue());
|
| TONATIVE_VOID_EXCEPTIONSTATE_INTERNAL(defaultUndefinedOptionalLongArg, toInt32(info[2], exceptionState), exceptionState);
|
| TOSTRING_VOID_INTERNAL(defaultUndefinedOptionalStringArg, info[3]);
|
| - TOSTRING_VOID_INTERNAL(defaultNullStringOptionalstringArg, argumentOrNull(info, 4));
|
| + if (info.Length() > 4) {
|
| + TOSTRING_VOID_INTERNAL(defaultNullStringOptionalstringArg, info[4]);
|
| + } else {
|
| + defaultNullStringOptionalstringArg = nullptr;
|
| + }
|
| if (UNLIKELY(info.Length() <= 5)) {
|
| RefPtr<TestInterfaceNamedConstructor> impl = TestInterfaceNamedConstructor::createForJSConstructor(document, stringArg, defaultUndefinedOptionalBooleanArg, defaultUndefinedOptionalLongArg, defaultUndefinedOptionalStringArg, defaultNullStringOptionalstringArg, exceptionState);
|
| v8::Handle<v8::Object> wrapper = info.Holder();
|
|
|