| Index: Source/bindings/tests/results/core/V8TestInterfaceConstructor2.cpp | 
| diff --git a/Source/bindings/tests/results/core/V8TestInterfaceConstructor2.cpp b/Source/bindings/tests/results/core/V8TestInterfaceConstructor2.cpp | 
| index 16ff2cf2ba9fa1f2d660cd077be89ba44fa67fa6..4fadd42a68ec04ca372a37a83df383adcde402d5 100644 | 
| --- a/Source/bindings/tests/results/core/V8TestInterfaceConstructor2.cpp | 
| +++ b/Source/bindings/tests/results/core/V8TestInterfaceConstructor2.cpp | 
| @@ -32,7 +32,7 @@ const WrapperTypeInfo& TestInterfaceConstructor2::s_wrapperTypeInfo = V8TestInte | 
|  | 
| namespace TestInterfaceConstructor2V8Internal { | 
|  | 
| -static void constructor1(const v8::FunctionCallbackInfo<v8::Value>& info) | 
| +static void constructor1(const v8::FunctionCallbackInfo<v8::Value>& info, int typeCheckedArgumentIndex) | 
| { | 
| V8StringResource<> stringArg; | 
| { | 
| @@ -44,7 +44,7 @@ static void constructor1(const v8::FunctionCallbackInfo<v8::Value>& info) | 
| v8SetReturnValue(info, wrapper); | 
| } | 
|  | 
| -static void constructor2(const v8::FunctionCallbackInfo<v8::Value>& info) | 
| +static void constructor2(const v8::FunctionCallbackInfo<v8::Value>& info, int typeCheckedArgumentIndex) | 
| { | 
| Dictionary dictionaryArg; | 
| { | 
| @@ -60,7 +60,7 @@ static void constructor2(const v8::FunctionCallbackInfo<v8::Value>& info) | 
| v8SetReturnValue(info, wrapper); | 
| } | 
|  | 
| -static void constructor3(const v8::FunctionCallbackInfo<v8::Value>& info) | 
| +static void constructor3(const v8::FunctionCallbackInfo<v8::Value>& info, int typeCheckedArgumentIndex) | 
| { | 
| ExceptionState exceptionState(ExceptionState::ConstructionContext, "TestInterfaceConstructor2", info.Holder(), info.GetIsolate()); | 
| Vector<Vector<String> > stringSequenceSequenceArg; | 
| @@ -73,7 +73,7 @@ static void constructor3(const v8::FunctionCallbackInfo<v8::Value>& info) | 
| v8SetReturnValue(info, wrapper); | 
| } | 
|  | 
| -static void constructor4(const v8::FunctionCallbackInfo<v8::Value>& info) | 
| +static void constructor4(const v8::FunctionCallbackInfo<v8::Value>& info, int typeCheckedArgumentIndex) | 
| { | 
| ExceptionState exceptionState(ExceptionState::ConstructionContext, "TestInterfaceConstructor2", info.Holder(), info.GetIsolate()); | 
| TestInterfaceEmpty* testInterfaceEmptyArg; | 
| @@ -118,45 +118,45 @@ static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info) | 
| switch (std::min(6, info.Length())) { | 
| case 1: | 
| if (info[0]->IsArray()) { | 
| -            TestInterfaceConstructor2V8Internal::constructor3(info); | 
| +            TestInterfaceConstructor2V8Internal::constructor3(info, 0); | 
| return; | 
| } | 
| if (info[0]->IsObject()) { | 
| -            TestInterfaceConstructor2V8Internal::constructor2(info); | 
| +            TestInterfaceConstructor2V8Internal::constructor2(info, 0); | 
| return; | 
| } | 
| if (true) { | 
| -            TestInterfaceConstructor2V8Internal::constructor1(info); | 
| +            TestInterfaceConstructor2V8Internal::constructor1(info, -1); | 
| return; | 
| } | 
| break; | 
| case 2: | 
| if (true) { | 
| -            TestInterfaceConstructor2V8Internal::constructor4(info); | 
| +            TestInterfaceConstructor2V8Internal::constructor4(info, -1); | 
| return; | 
| } | 
| break; | 
| case 3: | 
| if (true) { | 
| -            TestInterfaceConstructor2V8Internal::constructor4(info); | 
| +            TestInterfaceConstructor2V8Internal::constructor4(info, -1); | 
| return; | 
| } | 
| break; | 
| case 4: | 
| if (true) { | 
| -            TestInterfaceConstructor2V8Internal::constructor4(info); | 
| +            TestInterfaceConstructor2V8Internal::constructor4(info, -1); | 
| return; | 
| } | 
| break; | 
| case 5: | 
| if (true) { | 
| -            TestInterfaceConstructor2V8Internal::constructor4(info); | 
| +            TestInterfaceConstructor2V8Internal::constructor4(info, -1); | 
| return; | 
| } | 
| break; | 
| case 6: | 
| if (true) { | 
| -            TestInterfaceConstructor2V8Internal::constructor4(info); | 
| +            TestInterfaceConstructor2V8Internal::constructor4(info, -1); | 
| return; | 
| } | 
| break; | 
|  |