static void readonlyStringAttributeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info) { v8::Local<v8::Object> holder = info.Holder(); TestException* impl = V8TestException::toImpl(holder); v8SetReturnValueString(info, impl->readonlyStringAttribute(), info.GetIsolate()); }
static void readonlyStringAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) { v8::Handle<v8::Object> holder = info.Holder(); TestException* impl = V8TestException::toNative(holder); v8SetReturnValueString(info, impl->readonlyStringAttribute(), info.GetIsolate()); }