/* 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(WORKERS) #include "JSErrorEvent.h" #include "ErrorEvent.h" #include "KURL.h" #include #include #include #include using namespace JSC; namespace WebCore { ASSERT_CLASS_FITS_IN_CELL(JSErrorEvent); /* Hash table */ static const HashTableValue JSErrorEventTableValues[5] = { { "message", DontDelete|ReadOnly, (intptr_t)jsErrorEventMessage, (intptr_t)0 }, { "filename", DontDelete|ReadOnly, (intptr_t)jsErrorEventFilename, (intptr_t)0 }, { "lineno", DontDelete|ReadOnly, (intptr_t)jsErrorEventLineno, (intptr_t)0 }, { "constructor", DontEnum|ReadOnly, (intptr_t)jsErrorEventConstructor, (intptr_t)0 }, { 0, 0, 0, 0 } }; static JSC_CONST_HASHTABLE HashTable JSErrorEventTable = #if ENABLE(PERFECT_HASH_SIZE) { 15, JSErrorEventTableValues, 0 }; #else { 9, 7, JSErrorEventTableValues, 0 }; #endif /* Hash table for constructor */ static const HashTableValue JSErrorEventConstructorTableValues[1] = { { 0, 0, 0, 0 } }; static JSC_CONST_HASHTABLE HashTable JSErrorEventConstructorTable = #if ENABLE(PERFECT_HASH_SIZE) { 0, JSErrorEventConstructorTableValues, 0 }; #else { 1, 0, JSErrorEventConstructorTableValues, 0 }; #endif class JSErrorEventConstructor : public DOMConstructorObject { public: JSErrorEventConstructor(ExecState* exec, JSDOMGlobalObject* globalObject) : DOMConstructorObject(JSErrorEventConstructor::createStructure(globalObject->objectPrototype()), globalObject) { putDirect(exec->propertyNames().prototype, JSErrorEventPrototype::self(exec, globalObject), None); } virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&); virtual const ClassInfo* classInfo() const { return &s_info; } static const ClassInfo s_info; static PassRefPtr createStructure(JSValue proto) { return Structure::create(proto, TypeInfo(ObjectType, ImplementsHasInstance)); } }; const ClassInfo JSErrorEventConstructor::s_info = { "ErrorEventConstructor", 0, &JSErrorEventConstructorTable, 0 }; bool JSErrorEventConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSErrorEventConstructorTable, this, propertyName, slot); } /* Hash table for prototype */ static const HashTableValue JSErrorEventPrototypeTableValues[2] = { { "initErrorEvent", DontDelete|Function, (intptr_t)jsErrorEventPrototypeFunctionInitErrorEvent, (intptr_t)6 }, { 0, 0, 0, 0 } }; static JSC_CONST_HASHTABLE HashTable JSErrorEventPrototypeTable = #if ENABLE(PERFECT_HASH_SIZE) { 0, JSErrorEventPrototypeTableValues, 0 }; #else { 2, 1, JSErrorEventPrototypeTableValues, 0 }; #endif static const HashTable* getJSErrorEventPrototypeTable(ExecState* exec) { return getHashTableForGlobalData(exec->globalData(), &JSErrorEventPrototypeTable); } const ClassInfo JSErrorEventPrototype::s_info = { "ErrorEventPrototype", 0, 0, getJSErrorEventPrototypeTable }; JSObject* JSErrorEventPrototype::self(ExecState* exec, JSGlobalObject* globalObject) { return getDOMPrototype(exec, globalObject); } bool JSErrorEventPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticFunctionSlot(exec, getJSErrorEventPrototypeTable(exec), this, propertyName, slot); } static const HashTable* getJSErrorEventTable(ExecState* exec) { return getHashTableForGlobalData(exec->globalData(), &JSErrorEventTable); } const ClassInfo JSErrorEvent::s_info = { "ErrorEvent", &JSEvent::s_info, 0, getJSErrorEventTable }; JSErrorEvent::JSErrorEvent(PassRefPtr structure, JSDOMGlobalObject* globalObject, PassRefPtr impl) : JSEvent(structure, globalObject, impl) { } JSObject* JSErrorEvent::createPrototype(ExecState* exec, JSGlobalObject* globalObject) { return new (exec) JSErrorEventPrototype(JSErrorEventPrototype::createStructure(JSEventPrototype::self(exec, globalObject))); } bool JSErrorEvent::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, getJSErrorEventTable(exec), this, propertyName, slot); } JSValue jsErrorEventMessage(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSErrorEvent* castedThis = static_cast(asObject(slot.slotBase())); UNUSED_PARAM(exec); ErrorEvent* imp = static_cast(castedThis->impl()); return jsString(exec, imp->message()); } JSValue jsErrorEventFilename(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSErrorEvent* castedThis = static_cast(asObject(slot.slotBase())); UNUSED_PARAM(exec); ErrorEvent* imp = static_cast(castedThis->impl()); return jsString(exec, imp->filename()); } JSValue jsErrorEventLineno(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSErrorEvent* castedThis = static_cast(asObject(slot.slotBase())); UNUSED_PARAM(exec); ErrorEvent* imp = static_cast(castedThis->impl()); return jsNumber(exec, imp->lineno()); } JSValue jsErrorEventConstructor(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSErrorEvent* domObject = static_cast(asObject(slot.slotBase())); return JSErrorEvent::getConstructor(exec, domObject->globalObject()); } JSValue JSErrorEvent::getConstructor(ExecState* exec, JSGlobalObject* globalObject) { return getDOMConstructor(exec, static_cast(globalObject)); } JSValue JSC_HOST_CALL jsErrorEventPrototypeFunctionInitErrorEvent(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args) { UNUSED_PARAM(args); if (!thisValue.isObject(&JSErrorEvent::s_info)) return throwError(exec, TypeError); JSErrorEvent* castedThisObj = static_cast(asObject(thisValue)); ErrorEvent* imp = static_cast(castedThisObj->impl()); const UString& typeArg = args.at(0).toString(exec); bool canBubbleArg = args.at(1).toBoolean(exec); bool cancelableArg = args.at(2).toBoolean(exec); const UString& messageArg = args.at(3).toString(exec); const UString& filenameArg = args.at(4).toString(exec); unsigned linenoArg = args.at(5).toInt32(exec); imp->initErrorEvent(typeArg, canBubbleArg, cancelableArg, messageArg, filenameArg, linenoArg); return jsUndefined(); } } #endif // ENABLE(WORKERS)