diff -r 000000000000 -r 4f2f89ce4247 WebCore/generated/JSSVGException.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/WebCore/generated/JSSVGException.cpp Fri Sep 17 09:02:29 2010 +0300 @@ -0,0 +1,251 @@ +/* + 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 "JSSVGException.h" + +#include "KURL.h" +#include "SVGException.h" +#include +#include +#include +#include + +using namespace JSC; + +namespace WebCore { + +ASSERT_CLASS_FITS_IN_CELL(JSSVGException); + +/* Hash table */ +#if ENABLE(JIT) +#define THUNK_GENERATOR(generator) , generator +#else +#define THUNK_GENERATOR(generator) +#endif + +static const HashTableValue JSSVGExceptionTableValues[5] = +{ + { "code", DontDelete | ReadOnly, (intptr_t)static_cast(jsSVGExceptionCode), (intptr_t)0 THUNK_GENERATOR(0) }, + { "name", DontDelete | ReadOnly, (intptr_t)static_cast(jsSVGExceptionName), (intptr_t)0 THUNK_GENERATOR(0) }, + { "message", DontDelete | ReadOnly, (intptr_t)static_cast(jsSVGExceptionMessage), (intptr_t)0 THUNK_GENERATOR(0) }, + { "constructor", DontEnum | ReadOnly, (intptr_t)static_cast(jsSVGExceptionConstructor), (intptr_t)0 THUNK_GENERATOR(0) }, + { 0, 0, 0, 0 THUNK_GENERATOR(0) } +}; + +#undef THUNK_GENERATOR +static JSC_CONST_HASHTABLE HashTable JSSVGExceptionTable = { 10, 7, JSSVGExceptionTableValues, 0 }; +/* Hash table for constructor */ +#if ENABLE(JIT) +#define THUNK_GENERATOR(generator) , generator +#else +#define THUNK_GENERATOR(generator) +#endif + +static const HashTableValue JSSVGExceptionConstructorTableValues[4] = +{ + { "SVG_WRONG_TYPE_ERR", DontDelete | ReadOnly, (intptr_t)static_cast(jsSVGExceptionSVG_WRONG_TYPE_ERR), (intptr_t)0 THUNK_GENERATOR(0) }, + { "SVG_INVALID_VALUE_ERR", DontDelete | ReadOnly, (intptr_t)static_cast(jsSVGExceptionSVG_INVALID_VALUE_ERR), (intptr_t)0 THUNK_GENERATOR(0) }, + { "SVG_MATRIX_NOT_INVERTABLE", DontDelete | ReadOnly, (intptr_t)static_cast(jsSVGExceptionSVG_MATRIX_NOT_INVERTABLE), (intptr_t)0 THUNK_GENERATOR(0) }, + { 0, 0, 0, 0 THUNK_GENERATOR(0) } +}; + +#undef THUNK_GENERATOR +static JSC_CONST_HASHTABLE HashTable JSSVGExceptionConstructorTable = { 9, 7, JSSVGExceptionConstructorTableValues, 0 }; +class JSSVGExceptionConstructor : public DOMConstructorObject { +public: + JSSVGExceptionConstructor(JSC::ExecState*, JSDOMGlobalObject*); + + virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&); + virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&); + virtual const JSC::ClassInfo* classInfo() const { return &s_info; } + static const JSC::ClassInfo s_info; + static PassRefPtr createStructure(JSC::JSValue prototype) + { + return JSC::Structure::create(prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount); + } +protected: + static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | JSC::ImplementsHasInstance | DOMConstructorObject::StructureFlags; +}; + +const ClassInfo JSSVGExceptionConstructor::s_info = { "SVGExceptionConstructor", 0, &JSSVGExceptionConstructorTable, 0 }; + +JSSVGExceptionConstructor::JSSVGExceptionConstructor(ExecState* exec, JSDOMGlobalObject* globalObject) + : DOMConstructorObject(JSSVGExceptionConstructor::createStructure(globalObject->objectPrototype()), globalObject) +{ + putDirect(exec->propertyNames().prototype, JSSVGExceptionPrototype::self(exec, globalObject), DontDelete | ReadOnly); +} + +bool JSSVGExceptionConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) +{ + return getStaticValueSlot(exec, &JSSVGExceptionConstructorTable, this, propertyName, slot); +} + +bool JSSVGExceptionConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) +{ + return getStaticValueDescriptor(exec, &JSSVGExceptionConstructorTable, this, propertyName, descriptor); +} + +/* Hash table for prototype */ +#if ENABLE(JIT) +#define THUNK_GENERATOR(generator) , generator +#else +#define THUNK_GENERATOR(generator) +#endif + +static const HashTableValue JSSVGExceptionPrototypeTableValues[5] = +{ + { "SVG_WRONG_TYPE_ERR", DontDelete | ReadOnly, (intptr_t)static_cast(jsSVGExceptionSVG_WRONG_TYPE_ERR), (intptr_t)0 THUNK_GENERATOR(0) }, + { "SVG_INVALID_VALUE_ERR", DontDelete | ReadOnly, (intptr_t)static_cast(jsSVGExceptionSVG_INVALID_VALUE_ERR), (intptr_t)0 THUNK_GENERATOR(0) }, + { "SVG_MATRIX_NOT_INVERTABLE", DontDelete | ReadOnly, (intptr_t)static_cast(jsSVGExceptionSVG_MATRIX_NOT_INVERTABLE), (intptr_t)0 THUNK_GENERATOR(0) }, + { "toString", DontDelete | DontEnum | Function, (intptr_t)static_cast(jsSVGExceptionPrototypeFunctionToString), (intptr_t)0 THUNK_GENERATOR(0) }, + { 0, 0, 0, 0 THUNK_GENERATOR(0) } +}; + +#undef THUNK_GENERATOR +static JSC_CONST_HASHTABLE HashTable JSSVGExceptionPrototypeTable = { 9, 7, JSSVGExceptionPrototypeTableValues, 0 }; +const ClassInfo JSSVGExceptionPrototype::s_info = { "SVGExceptionPrototype", 0, &JSSVGExceptionPrototypeTable, 0 }; + +JSObject* JSSVGExceptionPrototype::self(ExecState* exec, JSGlobalObject* globalObject) +{ + return getDOMPrototype(exec, globalObject); +} + +bool JSSVGExceptionPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) +{ + return getStaticPropertySlot(exec, &JSSVGExceptionPrototypeTable, this, propertyName, slot); +} + +bool JSSVGExceptionPrototype::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) +{ + return getStaticPropertyDescriptor(exec, &JSSVGExceptionPrototypeTable, this, propertyName, descriptor); +} + +const ClassInfo JSSVGException::s_info = { "SVGException", 0, &JSSVGExceptionTable, 0 }; + +JSSVGException::JSSVGException(NonNullPassRefPtr structure, JSDOMGlobalObject* globalObject, PassRefPtr impl) + : DOMObjectWithGlobalPointer(structure, globalObject) + , m_impl(impl) +{ +} + +JSSVGException::~JSSVGException() +{ + forgetDOMObject(this, impl()); + JSSVGContextCache::forgetWrapper(this); +} + +JSObject* JSSVGException::createPrototype(ExecState* exec, JSGlobalObject* globalObject) +{ + return new (exec) JSSVGExceptionPrototype(globalObject, JSSVGExceptionPrototype::createStructure(globalObject->objectPrototype())); +} + +bool JSSVGException::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) +{ + return getStaticValueSlot(exec, &JSSVGExceptionTable, this, propertyName, slot); +} + +bool JSSVGException::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) +{ + return getStaticValueDescriptor(exec, &JSSVGExceptionTable, this, propertyName, descriptor); +} + +JSValue jsSVGExceptionCode(ExecState* exec, JSValue slotBase, const Identifier&) +{ + JSSVGException* castedThis = static_cast(asObject(slotBase)); + UNUSED_PARAM(exec); + SVGException* imp = static_cast(castedThis->impl()); + JSValue result = jsNumber(exec, imp->code()); + return result; +} + +JSValue jsSVGExceptionName(ExecState* exec, JSValue slotBase, const Identifier&) +{ + JSSVGException* castedThis = static_cast(asObject(slotBase)); + UNUSED_PARAM(exec); + SVGException* imp = static_cast(castedThis->impl()); + JSValue result = jsString(exec, imp->name()); + return result; +} + +JSValue jsSVGExceptionMessage(ExecState* exec, JSValue slotBase, const Identifier&) +{ + JSSVGException* castedThis = static_cast(asObject(slotBase)); + UNUSED_PARAM(exec); + SVGException* imp = static_cast(castedThis->impl()); + JSValue result = jsString(exec, imp->message()); + return result; +} + +JSValue jsSVGExceptionConstructor(ExecState* exec, JSValue slotBase, const Identifier&) +{ + JSSVGException* domObject = static_cast(asObject(slotBase)); + return JSSVGException::getConstructor(exec, domObject->globalObject()); +} +JSValue JSSVGException::getConstructor(ExecState* exec, JSGlobalObject* globalObject) +{ + return getDOMConstructor(exec, static_cast(globalObject)); +} + +EncodedJSValue JSC_HOST_CALL jsSVGExceptionPrototypeFunctionToString(ExecState* exec) +{ + JSValue thisValue = exec->hostThisValue(); + if (!thisValue.inherits(&JSSVGException::s_info)) + return throwVMTypeError(exec); + JSSVGException* castedThis = static_cast(asObject(thisValue)); + SVGException* imp = static_cast(castedThis->impl()); + + + JSC::JSValue result = jsString(exec, imp->toString()); + return JSValue::encode(result); +} + +// Constant getters + +JSValue jsSVGExceptionSVG_WRONG_TYPE_ERR(ExecState* exec, JSValue, const Identifier&) +{ + return jsNumber(exec, static_cast(0)); +} + +JSValue jsSVGExceptionSVG_INVALID_VALUE_ERR(ExecState* exec, JSValue, const Identifier&) +{ + return jsNumber(exec, static_cast(1)); +} + +JSValue jsSVGExceptionSVG_MATRIX_NOT_INVERTABLE(ExecState* exec, JSValue, const Identifier&) +{ + return jsNumber(exec, static_cast(2)); +} + +JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, SVGException* object, SVGElement* context) +{ + return getDOMObjectWrapper(exec, globalObject, object, context); +} +SVGException* toSVGException(JSC::JSValue value) +{ + return value.inherits(&JSSVGException::s_info) ? static_cast(asObject(value))->impl() : 0; +} + +} + +#endif // ENABLE(SVG)