blob: d39f2677305e57021cc3eecb08356a1581ec8fdb [file] [log] [blame]
/*
* Copyright (C) 1999-2000 Harri Porten (porten@kde.org)
* Copyright (C) 2008 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifndef ERROR_OBJECT_H_
#define ERROR_OBJECT_H_
#include "JSFunction.h"
namespace KJS {
class FunctionPrototype;
class ObjectPrototype;
class ErrorInstance : public JSObject {
public:
ErrorInstance(JSObject* prototype);
virtual const ClassInfo* classInfo() const { return &info; }
static const ClassInfo info;
};
class ErrorPrototype : public ErrorInstance {
public:
ErrorPrototype(ExecState*, ObjectPrototype*, FunctionPrototype*);
};
class ErrorConstructor : public InternalFunction {
public:
ErrorConstructor(ExecState*, FunctionPrototype*, ErrorPrototype*);
private:
virtual ConstructType getConstructData(ConstructData&);
virtual CallType getCallData(CallData&);
};
class NativeErrorPrototype : public JSObject {
public:
NativeErrorPrototype(ExecState*, ErrorPrototype*, const UString& name, const UString& message);
};
class NativeErrorConstructor : public InternalFunction {
public:
NativeErrorConstructor(ExecState*, FunctionPrototype*, NativeErrorPrototype*);
virtual void mark();
static const ClassInfo info;
ErrorInstance* construct(ExecState*, const ArgList&);
private:
virtual const ClassInfo* classInfo() const { return &info; }
virtual ConstructType getConstructData(ConstructData&);
virtual CallType getCallData(CallData&);
NativeErrorPrototype* proto;
};
} // namespace KJS
#endif // ERROR_OBJECT_H_