/* 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(XPATH) #include "JSXPathException.h" #include "ExceptionCode.h" #include "JSDOMBinding.h" #include "KURL.h" #include "XPathException.h" #include #include #include using namespace JSC; namespace WebCore { ASSERT_CLASS_FITS_IN_CELL(JSXPathException); /* Hash table */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator #else #define THUNK_GENERATOR(generator) #endif static const HashTableValue JSXPathExceptionTableValues[5] = { { "code", DontDelete | ReadOnly, (intptr_t)static_cast(jsXPathExceptionCode), (intptr_t)0 THUNK_GENERATOR(0) }, { "name", DontDelete | ReadOnly, (intptr_t)static_cast(jsXPathExceptionName), (intptr_t)0 THUNK_GENERATOR(0) }, { "message", DontDelete | ReadOnly, (intptr_t)static_cast(jsXPathExceptionMessage), (intptr_t)0 THUNK_GENERATOR(0) }, { "constructor", DontEnum | ReadOnly, (intptr_t)static_cast(jsXPathExceptionConstructor), (intptr_t)0 THUNK_GENERATOR(0) }, { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; #undef THUNK_GENERATOR static JSC_CONST_HASHTABLE HashTable JSXPathExceptionTable = { 10, 7, JSXPathExceptionTableValues, 0 }; /* Hash table for constructor */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator #else #define THUNK_GENERATOR(generator) #endif static const HashTableValue JSXPathExceptionConstructorTableValues[3] = { { "INVALID_EXPRESSION_ERR", DontDelete | ReadOnly, (intptr_t)static_cast(jsXPathExceptionINVALID_EXPRESSION_ERR), (intptr_t)0 THUNK_GENERATOR(0) }, { "TYPE_ERR", DontDelete | ReadOnly, (intptr_t)static_cast(jsXPathExceptionTYPE_ERR), (intptr_t)0 THUNK_GENERATOR(0) }, { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; #undef THUNK_GENERATOR static JSC_CONST_HASHTABLE HashTable JSXPathExceptionConstructorTable = { 4, 3, JSXPathExceptionConstructorTableValues, 0 }; class JSXPathExceptionConstructor : public DOMConstructorObject { public: JSXPathExceptionConstructor(JSC::ExecState*, JSC::Structure*, JSDOMGlobalObject*); virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&); virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&); static const JSC::ClassInfo s_info; static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSValue prototype) { return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info); } protected: static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | JSC::ImplementsHasInstance | DOMConstructorObject::StructureFlags; }; const ClassInfo JSXPathExceptionConstructor::s_info = { "XPathExceptionConstructor", &DOMConstructorObject::s_info, &JSXPathExceptionConstructorTable, 0 }; JSXPathExceptionConstructor::JSXPathExceptionConstructor(ExecState* exec, Structure* structure, JSDOMGlobalObject* globalObject) : DOMConstructorObject(structure, globalObject) { ASSERT(inherits(&s_info)); putDirect(exec->globalData(), exec->propertyNames().prototype, JSXPathExceptionPrototype::self(exec, globalObject), DontDelete | ReadOnly); } bool JSXPathExceptionConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSXPathExceptionConstructorTable, this, propertyName, slot); } bool JSXPathExceptionConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticValueDescriptor(exec, &JSXPathExceptionConstructorTable, this, propertyName, descriptor); } /* Hash table for prototype */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator #else #define THUNK_GENERATOR(generator) #endif static const HashTableValue JSXPathExceptionPrototypeTableValues[4] = { { "INVALID_EXPRESSION_ERR", DontDelete | ReadOnly, (intptr_t)static_cast(jsXPathExceptionINVALID_EXPRESSION_ERR), (intptr_t)0 THUNK_GENERATOR(0) }, { "TYPE_ERR", DontDelete | ReadOnly, (intptr_t)static_cast(jsXPathExceptionTYPE_ERR), (intptr_t)0 THUNK_GENERATOR(0) }, { "toString", DontDelete | DontEnum | Function, (intptr_t)static_cast(jsXPathExceptionPrototypeFunctionToString), (intptr_t)0 THUNK_GENERATOR(0) }, { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; #undef THUNK_GENERATOR static JSC_CONST_HASHTABLE HashTable JSXPathExceptionPrototypeTable = { 8, 7, JSXPathExceptionPrototypeTableValues, 0 }; const ClassInfo JSXPathExceptionPrototype::s_info = { "XPathExceptionPrototype", &JSC::JSObjectWithGlobalObject::s_info, &JSXPathExceptionPrototypeTable, 0 }; JSObject* JSXPathExceptionPrototype::self(ExecState* exec, JSGlobalObject* globalObject) { return getDOMPrototype(exec, globalObject); } bool JSXPathExceptionPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticPropertySlot(exec, &JSXPathExceptionPrototypeTable, this, propertyName, slot); } bool JSXPathExceptionPrototype::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticPropertyDescriptor(exec, &JSXPathExceptionPrototypeTable, this, propertyName, descriptor); } const ClassInfo JSXPathException::s_info = { "XPathException", &JSDOMWrapper::s_info, &JSXPathExceptionTable, 0 }; JSXPathException::JSXPathException(Structure* structure, JSDOMGlobalObject* globalObject, PassRefPtr impl) : JSDOMWrapper(structure, globalObject) , m_impl(impl) { ASSERT(inherits(&s_info)); } JSObject* JSXPathException::createPrototype(ExecState* exec, JSGlobalObject* globalObject) { return new (exec) JSXPathExceptionPrototype(exec->globalData(), globalObject, JSXPathExceptionPrototype::createStructure(globalObject->globalData(), globalObject->objectPrototype())); } bool JSXPathException::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSXPathExceptionTable, this, propertyName, slot); } bool JSXPathException::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticValueDescriptor(exec, &JSXPathExceptionTable, this, propertyName, descriptor); } JSValue jsXPathExceptionCode(ExecState* exec, JSValue slotBase, const Identifier&) { JSXPathException* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); XPathException* imp = static_cast(castedThis->impl()); JSValue result = jsNumber(imp->code()); return result; } JSValue jsXPathExceptionName(ExecState* exec, JSValue slotBase, const Identifier&) { JSXPathException* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); XPathException* imp = static_cast(castedThis->impl()); JSValue result = jsString(exec, imp->name()); return result; } JSValue jsXPathExceptionMessage(ExecState* exec, JSValue slotBase, const Identifier&) { JSXPathException* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); XPathException* imp = static_cast(castedThis->impl()); JSValue result = jsString(exec, imp->message()); return result; } JSValue jsXPathExceptionConstructor(ExecState* exec, JSValue slotBase, const Identifier&) { JSXPathException* domObject = static_cast(asObject(slotBase)); return JSXPathException::getConstructor(exec, domObject->globalObject()); } JSValue JSXPathException::getConstructor(ExecState* exec, JSGlobalObject* globalObject) { return getDOMConstructor(exec, static_cast(globalObject)); } EncodedJSValue JSC_HOST_CALL jsXPathExceptionPrototypeFunctionToString(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSXPathException::s_info)) return throwVMTypeError(exec); JSXPathException* castedThis = static_cast(asObject(thisValue)); XPathException* imp = static_cast(castedThis->impl()); JSC::JSValue result = jsString(exec, imp->toString()); return JSValue::encode(result); } // Constant getters JSValue jsXPathExceptionINVALID_EXPRESSION_ERR(ExecState* exec, JSValue, const Identifier&) { UNUSED_PARAM(exec); return jsNumber(static_cast(51)); } JSValue jsXPathExceptionTYPE_ERR(ExecState* exec, JSValue, const Identifier&) { UNUSED_PARAM(exec); return jsNumber(static_cast(52)); } JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, XPathException* impl) { return wrap(exec, globalObject, impl); } XPathException* toXPathException(JSC::JSValue value) { return value.inherits(&JSXPathException::s_info) ? static_cast(asObject(value))->impl() : 0; } } #endif // ENABLE(XPATH)