JSValue jsSVGPathSegArcAbsR1(ExecState* exec, JSValue slotBase, const Identifier&) { JSSVGPathSegArcAbs* castedThis = static_cast<JSSVGPathSegArcAbs*>(asObject(slotBase)); UNUSED_PARAM(exec); SVGPathSegArcAbs* imp = static_cast<SVGPathSegArcAbs*>(castedThis->impl()); JSValue result = jsNumber(imp->r1()); return result; }
static v8::Handle<v8::Value> r1AttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) { SVGPathSegArcAbs* imp = V8SVGPathSegArcAbs::toNative(info.Holder()); return v8::Number::New(imp->r1()); }