/* This file is part of the WebKit open source project. This file has been generated by generate-bindings.pl. DO NOT MODIFY! This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "config.h" #if ENABLE(SVG) #include "JSSVGPathSegMovetoAbs.h" #include "SVGPathSegMoveto.h" #include #include using namespace JSC; namespace WebCore { ASSERT_CLASS_FITS_IN_CELL(JSSVGPathSegMovetoAbs); /* Hash table */ static const HashTableValue JSSVGPathSegMovetoAbsTableValues[4] = { { "x", DontDelete, (intptr_t)static_cast(jsSVGPathSegMovetoAbsX), (intptr_t)setJSSVGPathSegMovetoAbsX }, { "y", DontDelete, (intptr_t)static_cast(jsSVGPathSegMovetoAbsY), (intptr_t)setJSSVGPathSegMovetoAbsY }, { "constructor", DontEnum|ReadOnly, (intptr_t)static_cast(jsSVGPathSegMovetoAbsConstructor), (intptr_t)0 }, { 0, 0, 0, 0 } }; static JSC_CONST_HASHTABLE HashTable JSSVGPathSegMovetoAbsTable = #if ENABLE(PERFECT_HASH_SIZE) { 15, JSSVGPathSegMovetoAbsTableValues, 0 }; #else { 9, 7, JSSVGPathSegMovetoAbsTableValues, 0 }; #endif /* Hash table for constructor */ static const HashTableValue JSSVGPathSegMovetoAbsConstructorTableValues[1] = { { 0, 0, 0, 0 } }; static JSC_CONST_HASHTABLE HashTable JSSVGPathSegMovetoAbsConstructorTable = #if ENABLE(PERFECT_HASH_SIZE) { 0, JSSVGPathSegMovetoAbsConstructorTableValues, 0 }; #else { 1, 0, JSSVGPathSegMovetoAbsConstructorTableValues, 0 }; #endif class JSSVGPathSegMovetoAbsConstructor : public DOMConstructorObject { public: JSSVGPathSegMovetoAbsConstructor(ExecState* exec, JSDOMGlobalObject* globalObject) : DOMConstructorObject(JSSVGPathSegMovetoAbsConstructor::createStructure(globalObject->objectPrototype()), globalObject) { putDirect(exec->propertyNames().prototype, JSSVGPathSegMovetoAbsPrototype::self(exec, globalObject), None); } virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&); virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&); virtual const ClassInfo* classInfo() const { return &s_info; } static const ClassInfo s_info; static PassRefPtr createStructure(JSValue proto) { return Structure::create(proto, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount); } protected: static const unsigned StructureFlags = OverridesGetOwnPropertySlot | ImplementsHasInstance | DOMConstructorObject::StructureFlags; }; const ClassInfo JSSVGPathSegMovetoAbsConstructor::s_info = { "SVGPathSegMovetoAbsConstructor", 0, &JSSVGPathSegMovetoAbsConstructorTable, 0 }; bool JSSVGPathSegMovetoAbsConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSSVGPathSegMovetoAbsConstructorTable, this, propertyName, slot); } bool JSSVGPathSegMovetoAbsConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticValueDescriptor(exec, &JSSVGPathSegMovetoAbsConstructorTable, this, propertyName, descriptor); } /* Hash table for prototype */ static const HashTableValue JSSVGPathSegMovetoAbsPrototypeTableValues[1] = { { 0, 0, 0, 0 } }; static JSC_CONST_HASHTABLE HashTable JSSVGPathSegMovetoAbsPrototypeTable = #if ENABLE(PERFECT_HASH_SIZE) { 0, JSSVGPathSegMovetoAbsPrototypeTableValues, 0 }; #else { 1, 0, JSSVGPathSegMovetoAbsPrototypeTableValues, 0 }; #endif const ClassInfo JSSVGPathSegMovetoAbsPrototype::s_info = { "SVGPathSegMovetoAbsPrototype", 0, &JSSVGPathSegMovetoAbsPrototypeTable, 0 }; JSObject* JSSVGPathSegMovetoAbsPrototype::self(ExecState* exec, JSGlobalObject* globalObject) { return getDOMPrototype(exec, globalObject); } const ClassInfo JSSVGPathSegMovetoAbs::s_info = { "SVGPathSegMovetoAbs", &JSSVGPathSeg::s_info, &JSSVGPathSegMovetoAbsTable, 0 }; JSSVGPathSegMovetoAbs::JSSVGPathSegMovetoAbs(NonNullPassRefPtr structure, JSDOMGlobalObject* globalObject, PassRefPtr impl) : JSSVGPathSeg(structure, globalObject, impl) { } JSObject* JSSVGPathSegMovetoAbs::createPrototype(ExecState* exec, JSGlobalObject* globalObject) { return new (exec) JSSVGPathSegMovetoAbsPrototype(JSSVGPathSegMovetoAbsPrototype::createStructure(JSSVGPathSegPrototype::self(exec, globalObject))); } bool JSSVGPathSegMovetoAbs::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSSVGPathSegMovetoAbsTable, this, propertyName, slot); } bool JSSVGPathSegMovetoAbs::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticValueDescriptor(exec, &JSSVGPathSegMovetoAbsTable, this, propertyName, descriptor); } JSValue jsSVGPathSegMovetoAbsX(ExecState* exec, JSValue slotBase, const Identifier&) { JSSVGPathSegMovetoAbs* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); SVGPathSegMovetoAbs* imp = static_cast(castedThis->impl()); JSValue result = jsNumber(exec, imp->x()); return result; } JSValue jsSVGPathSegMovetoAbsY(ExecState* exec, JSValue slotBase, const Identifier&) { JSSVGPathSegMovetoAbs* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); SVGPathSegMovetoAbs* imp = static_cast(castedThis->impl()); JSValue result = jsNumber(exec, imp->y()); return result; } JSValue jsSVGPathSegMovetoAbsConstructor(ExecState* exec, JSValue slotBase, const Identifier&) { JSSVGPathSegMovetoAbs* domObject = static_cast(asObject(slotBase)); return JSSVGPathSegMovetoAbs::getConstructor(exec, domObject->globalObject()); } void JSSVGPathSegMovetoAbs::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) { lookupPut(exec, propertyName, value, &JSSVGPathSegMovetoAbsTable, this, slot); } void setJSSVGPathSegMovetoAbsX(ExecState* exec, JSObject* thisObject, JSValue value) { JSSVGPathSegMovetoAbs* castedThisObj = static_cast(thisObject); SVGPathSegMovetoAbs* imp = static_cast(castedThisObj->impl()); imp->setX(value.toFloat(exec)); JSSVGContextCache::propagateSVGDOMChange(castedThisObj, imp->associatedAttributeName()); } void setJSSVGPathSegMovetoAbsY(ExecState* exec, JSObject* thisObject, JSValue value) { JSSVGPathSegMovetoAbs* castedThisObj = static_cast(thisObject); SVGPathSegMovetoAbs* imp = static_cast(castedThisObj->impl()); imp->setY(value.toFloat(exec)); JSSVGContextCache::propagateSVGDOMChange(castedThisObj, imp->associatedAttributeName()); } JSValue JSSVGPathSegMovetoAbs::getConstructor(ExecState* exec, JSGlobalObject* globalObject) { return getDOMConstructor(exec, static_cast(globalObject)); } } #endif // ENABLE(SVG)