1 // -*- c-basic-offset: 2 -*-
3 * This file is part of the KDE libraries
4 * Copyright (C) 1999-2000 Harri Porten (porten@kde.org)
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #ifndef ARRAY_OBJECT_H_
23 #define ARRAY_OBJECT_H_
25 #include "array_instance.h"
27 #include "function_object.h"
31 class ArrayPrototype
: public ArrayInstance
{
33 ArrayPrototype(ExecState
*exec
,
34 ObjectPrototype
*objProto
);
35 bool getOwnPropertySlot(ExecState
*, const Identifier
&, PropertySlot
&);
36 virtual const ClassInfo
*classInfo() const { return &info
; }
37 static const ClassInfo info
;
40 class ArrayProtoFunc
: public InternalFunctionImp
{
42 ArrayProtoFunc(ExecState
*exec
, int i
, int len
, const Identifier
& name
);
44 virtual JSValue
*callAsFunction(ExecState
*exec
, JSObject
*thisObj
, const List
&args
);
46 enum { ToString
, ToLocaleString
, Concat
, Join
, Pop
, Push
,
47 Reverse
, Shift
, Slice
, Sort
, Splice
, UnShift
,
48 Every
, ForEach
, Some
, IndexOf
, Filter
, Map
, LastIndexOf
};
53 class ArrayObjectImp
: public InternalFunctionImp
{
55 ArrayObjectImp(ExecState
*exec
,
56 FunctionPrototype
*funcProto
,
57 ArrayPrototype
*arrayProto
);
59 virtual bool implementsConstruct() const;
60 virtual JSObject
*construct(ExecState
*exec
, const List
&args
);
61 virtual JSValue
*callAsFunction(ExecState
*exec
, JSObject
*thisObj
, const List
&args
);