/* 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" #include "JSWebKitPoint.h" #include "WebKitPoint.h" #include using namespace JSC; namespace WebCore { ASSERT_CLASS_FITS_IN_CELL(JSWebKitPoint); /* Hash table */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator #else #define THUNK_GENERATOR(generator) #endif static const HashTableValue JSWebKitPointTableValues[4] = { { "x", DontDelete, (intptr_t)static_cast(jsWebKitPointX), (intptr_t)setJSWebKitPointX THUNK_GENERATOR(0) }, { "y", DontDelete, (intptr_t)static_cast(jsWebKitPointY), (intptr_t)setJSWebKitPointY THUNK_GENERATOR(0) }, { "constructor", DontEnum | ReadOnly, (intptr_t)static_cast(jsWebKitPointConstructor), (intptr_t)0 THUNK_GENERATOR(0) }, { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; #undef THUNK_GENERATOR static JSC_CONST_HASHTABLE HashTable JSWebKitPointTable = { 9, 7, JSWebKitPointTableValues, 0 }; /* Hash table for constructor */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator #else #define THUNK_GENERATOR(generator) #endif static const HashTableValue JSWebKitPointConstructorTableValues[1] = { { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; #undef THUNK_GENERATOR static JSC_CONST_HASHTABLE HashTable JSWebKitPointConstructorTable = { 1, 0, JSWebKitPointConstructorTableValues, 0 }; const ClassInfo JSWebKitPointConstructor::s_info = { "WebKitPointConstructor", &DOMConstructorObject::s_info, &JSWebKitPointConstructorTable, 0 }; JSWebKitPointConstructor::JSWebKitPointConstructor(ExecState* exec, Structure* structure, JSDOMGlobalObject* globalObject) : DOMConstructorObject(structure, globalObject) { ASSERT(inherits(&s_info)); putDirect(exec->globalData(), exec->propertyNames().prototype, JSWebKitPointPrototype::self(exec, globalObject), DontDelete | ReadOnly); putDirect(exec->globalData(), exec->propertyNames().length, jsNumber(2), ReadOnly | DontDelete | DontEnum); } bool JSWebKitPointConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSWebKitPointConstructorTable, this, propertyName, slot); } bool JSWebKitPointConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticValueDescriptor(exec, &JSWebKitPointConstructorTable, this, propertyName, descriptor); } ConstructType JSWebKitPointConstructor::getConstructData(ConstructData& constructData) { constructData.native.function = constructJSWebKitPoint; return ConstructTypeHost; } /* Hash table for prototype */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator #else #define THUNK_GENERATOR(generator) #endif static const HashTableValue JSWebKitPointPrototypeTableValues[1] = { { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; #undef THUNK_GENERATOR static JSC_CONST_HASHTABLE HashTable JSWebKitPointPrototypeTable = { 1, 0, JSWebKitPointPrototypeTableValues, 0 }; const ClassInfo JSWebKitPointPrototype::s_info = { "WebKitPointPrototype", &JSC::JSObjectWithGlobalObject::s_info, &JSWebKitPointPrototypeTable, 0 }; JSObject* JSWebKitPointPrototype::self(ExecState* exec, JSGlobalObject* globalObject) { return getDOMPrototype(exec, globalObject); } const ClassInfo JSWebKitPoint::s_info = { "WebKitPoint", &JSDOMWrapper::s_info, &JSWebKitPointTable, 0 }; JSWebKitPoint::JSWebKitPoint(Structure* structure, JSDOMGlobalObject* globalObject, PassRefPtr impl) : JSDOMWrapper(structure, globalObject) , m_impl(impl) { ASSERT(inherits(&s_info)); } JSObject* JSWebKitPoint::createPrototype(ExecState* exec, JSGlobalObject* globalObject) { return new (exec) JSWebKitPointPrototype(exec->globalData(), globalObject, JSWebKitPointPrototype::createStructure(globalObject->globalData(), globalObject->objectPrototype())); } bool JSWebKitPoint::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSWebKitPointTable, this, propertyName, slot); } bool JSWebKitPoint::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticValueDescriptor(exec, &JSWebKitPointTable, this, propertyName, descriptor); } JSValue jsWebKitPointX(ExecState* exec, JSValue slotBase, const Identifier&) { JSWebKitPoint* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); WebKitPoint* imp = static_cast(castedThis->impl()); JSValue result = jsNumber(imp->x()); return result; } JSValue jsWebKitPointY(ExecState* exec, JSValue slotBase, const Identifier&) { JSWebKitPoint* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); WebKitPoint* imp = static_cast(castedThis->impl()); JSValue result = jsNumber(imp->y()); return result; } JSValue jsWebKitPointConstructor(ExecState* exec, JSValue slotBase, const Identifier&) { JSWebKitPoint* domObject = static_cast(asObject(slotBase)); return JSWebKitPoint::getConstructor(exec, domObject->globalObject()); } void JSWebKitPoint::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) { lookupPut(exec, propertyName, value, &JSWebKitPointTable, this, slot); } void setJSWebKitPointX(ExecState* exec, JSObject* thisObject, JSValue value) { JSWebKitPoint* castedThis = static_cast(thisObject); WebKitPoint* imp = static_cast(castedThis->impl()); imp->setX(value.toFloat(exec)); } void setJSWebKitPointY(ExecState* exec, JSObject* thisObject, JSValue value) { JSWebKitPoint* castedThis = static_cast(thisObject); WebKitPoint* imp = static_cast(castedThis->impl()); imp->setY(value.toFloat(exec)); } JSValue JSWebKitPoint::getConstructor(ExecState* exec, JSGlobalObject* globalObject) { return getDOMConstructor(exec, static_cast(globalObject)); } JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, WebKitPoint* impl) { return wrap(exec, globalObject, impl); } WebKitPoint* toWebKitPoint(JSC::JSValue value) { return value.inherits(&JSWebKitPoint::s_info) ? static_cast(asObject(value))->impl() : 0; } }