static void yAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info) { SVGPathSegArcAbs* imp = V8SVGPathSegArcAbs::toNative(info.Holder()); float v = static_cast<float>(value->NumberValue()); imp->setY(v); return; }
void setJSSVGPathSegArcAbsY(ExecState* exec, JSObject* thisObject, JSValue value) { JSSVGPathSegArcAbs* castedThis = static_cast<JSSVGPathSegArcAbs*>(thisObject); SVGPathSegArcAbs* imp = static_cast<SVGPathSegArcAbs*>(castedThis->impl()); imp->setY(value.toFloat(exec)); }