| Index: Source/bindings/tests/results/V8TestOverloadedConstructors.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestOverloadedConstructors.cpp b/Source/bindings/tests/results/V8TestOverloadedConstructors.cpp
|
| index d27f81332f6e494c697d19255fbcc6fb75483be8..7d7d9318a2768073120e747d027b4bf9661cd5fe 100644
|
| --- a/Source/bindings/tests/results/V8TestOverloadedConstructors.cpp
|
| +++ b/Source/bindings/tests/results/V8TestOverloadedConstructors.cpp
|
| @@ -114,7 +114,6 @@ static void constructor4(const v8::FunctionCallbackInfo<v8::Value>& info)
|
|
|
| static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| {
|
| - ExceptionState exceptionState(ExceptionState::ConstructionContext, "TestOverloadedConstructors", info.Holder(), info.GetIsolate());
|
| if (((info.Length() == 1) && (V8ArrayBuffer::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate()))))) {
|
| TestOverloadedConstructorsV8Internal::constructor1(info);
|
| return;
|
| @@ -131,6 +130,7 @@ static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| TestOverloadedConstructorsV8Internal::constructor4(info);
|
| return;
|
| }
|
| + ExceptionState exceptionState(ExceptionState::ConstructionContext, "TestOverloadedConstructors", info.Holder(), info.GetIsolate());
|
| if (UNLIKELY(info.Length() < 1)) {
|
| exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(1, info.Length()));
|
| exceptionState.throwIfNeeded();
|
|
|