Index: Source/bindings/tests/results/V8TestException.cpp |
diff --git a/Source/bindings/tests/results/V8TestException.cpp b/Source/bindings/tests/results/V8TestException.cpp |
index 47966e66fe252ac40307cf0d2674edfe312a40c9..52b3f16cdc087352b9d55061133280648bbbe5a2 100644 |
--- a/Source/bindings/tests/results/V8TestException.cpp |
+++ b/Source/bindings/tests/results/V8TestException.cpp |
@@ -74,8 +74,8 @@ template <typename T> void V8_USE(T) { } |
static void readonlyUnsignedShortAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) |
{ |
- TestException* imp = V8TestException::toNative(info.Holder()); |
- v8SetReturnValueUnsigned(info, imp->readonlyUnsignedShortAttribute()); |
+ TestException* impl = V8TestException::toNative(info.Holder()); |
+ v8SetReturnValueUnsigned(info, impl->readonlyUnsignedShortAttribute()); |
} |
static void readonlyUnsignedShortAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) |
@@ -87,8 +87,8 @@ static void readonlyUnsignedShortAttributeAttributeGetterCallback(v8::Local<v8:: |
static void readonlyStringAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) |
{ |
- TestException* imp = V8TestException::toNative(info.Holder()); |
- v8SetReturnValueString(info, imp->readonlyStringAttribute(), info.GetIsolate()); |
+ TestException* impl = V8TestException::toNative(info.Holder()); |
+ v8SetReturnValueString(info, impl->readonlyStringAttribute(), info.GetIsolate()); |
} |
static void readonlyStringAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) |
@@ -100,8 +100,8 @@ static void readonlyStringAttributeAttributeGetterCallback(v8::Local<v8::String> |
static void toStringMethod(const v8::FunctionCallbackInfo<v8::Value>& info) |
{ |
- TestException* imp = V8TestException::toNative(info.Holder()); |
- v8SetReturnValueString(info, imp->toString(), info.GetIsolate()); |
+ TestException* impl = V8TestException::toNative(info.Holder()); |
+ v8SetReturnValueString(info, impl->toString(), info.GetIsolate()); |
} |
static void toStringMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) |