Index: Source/bindings/tests/results/V8TestTypedefs.cpp |
diff --git a/Source/bindings/tests/results/V8TestTypedefs.cpp b/Source/bindings/tests/results/V8TestTypedefs.cpp |
index 2d55e990f149e9355ee35988db092f77f9c50aef..783b1fe4f7ca77f04381ac617ef083bdcc7d3aa5 100644 |
--- a/Source/bindings/tests/results/V8TestTypedefs.cpp |
+++ b/Source/bindings/tests/results/V8TestTypedefs.cpp |
@@ -137,7 +137,7 @@ static void immutableSerializedScriptValueAttributeSetterCallback(v8::Local<v8:: |
static void attrWithGetterExceptionAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) |
{ |
TestTypedefs* imp = V8TestTypedefs::toNative(info.Holder()); |
- ExceptionState es(info.GetIsolate()); |
+ ExceptionState es(info.Holder(), info.GetIsolate()); |
int jsValue = imp->attrWithGetterException(es); |
if (UNLIKELY(es.throwIfNeeded())) |
return; |
@@ -182,7 +182,7 @@ static void attrWithSetterExceptionAttributeSetter(v8::Local<v8::Value> jsValue, |
{ |
TestTypedefs* imp = V8TestTypedefs::toNative(info.Holder()); |
V8TRYCATCH_VOID(int, cppValue, toInt32(jsValue)); |
- ExceptionState es(info.GetIsolate()); |
+ ExceptionState es(info.Holder(), info.GetIsolate()); |
imp->setAttrWithSetterException(cppValue, es); |
es.throwIfNeeded(); |
} |
@@ -197,7 +197,7 @@ static void attrWithSetterExceptionAttributeSetterCallback(v8::Local<v8::String> |
static void stringAttrWithGetterExceptionAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) |
{ |
TestTypedefs* imp = V8TestTypedefs::toNative(info.Holder()); |
- ExceptionState es(info.GetIsolate()); |
+ ExceptionState es(info.Holder(), info.GetIsolate()); |
String jsValue = imp->stringAttrWithGetterException(es); |
if (UNLIKELY(es.throwIfNeeded())) |
return; |
@@ -242,7 +242,7 @@ static void stringAttrWithSetterExceptionAttributeSetter(v8::Local<v8::Value> js |
{ |
TestTypedefs* imp = V8TestTypedefs::toNative(info.Holder()); |
V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue); |
- ExceptionState es(info.GetIsolate()); |
+ ExceptionState es(info.Holder(), info.GetIsolate()); |
imp->setStringAttrWithSetterException(cppValue, es); |
es.throwIfNeeded(); |
} |
@@ -408,7 +408,7 @@ static void stringArrayFunctionMethod(const v8::FunctionCallbackInfo<v8::Value>& |
return; |
} |
TestTypedefs* imp = V8TestTypedefs::toNative(info.Holder()); |
- ExceptionState es(info.GetIsolate()); |
+ ExceptionState es(info.Holder(), info.GetIsolate()); |
V8TRYCATCH_VOID(Vector<String>, values, toNativeArray<String>(info[0], 1, info.GetIsolate())); |
Vector<String> result = imp->stringArrayFunction(values, es); |
if (es.throwIfNeeded()) |
@@ -430,7 +430,7 @@ static void stringArrayFunction2Method(const v8::FunctionCallbackInfo<v8::Value> |
return; |
} |
TestTypedefs* imp = V8TestTypedefs::toNative(info.Holder()); |
- ExceptionState es(info.GetIsolate()); |
+ ExceptionState es(info.Holder(), info.GetIsolate()); |
V8TRYCATCH_VOID(Vector<String>, values, toNativeArray<String>(info[0], 1, info.GetIsolate())); |
Vector<String> result = imp->stringArrayFunction2(values, es); |
if (es.throwIfNeeded()) |
@@ -448,7 +448,7 @@ static void stringArrayFunction2MethodCallback(const v8::FunctionCallbackInfo<v8 |
static void methodWithExceptionMethod(const v8::FunctionCallbackInfo<v8::Value>& info) |
{ |
TestTypedefs* imp = V8TestTypedefs::toNative(info.Holder()); |
- ExceptionState es(info.GetIsolate()); |
+ ExceptionState es(info.Holder(), info.GetIsolate()); |
imp->methodWithException(es); |
if (es.throwIfNeeded()) |
return; |