/usr/include/KF5/kjs/function.h is in libkf5kjs-dev 5.28.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 | /*
* This file is part of the KDE libraries
* Copyright (C) 1999-2000 Harri Porten (porten@kde.org)
* Copyright (C) 2003, 2004, 2005, 2006, 2007 Apple Inc. All rights reserved.
* Copyright (C) 2007, 2008 Maksim Orlovich <maksim@kde.org>
*
* 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.
*
*/
#ifndef KJS_FUNCTION_H
#define KJS_FUNCTION_H
#include "object.h"
#include "JSVariableObject.h"
#include <wtf/OwnPtr.h>
namespace KJS
{
class ActivationImp;
class FunctionPrototype;
class KJS_EXPORT InternalFunctionImp : public JSObject
{
public:
InternalFunctionImp();
InternalFunctionImp(FunctionPrototype *);
InternalFunctionImp(FunctionPrototype *, const Identifier &);
virtual bool implementsCall() const;
virtual JSValue *callAsFunction(ExecState *, JSObject *thisObjec, const List &args) = 0;
virtual bool implementsHasInstance() const;
virtual const ClassInfo *classInfo() const
{
return &info;
}
static const ClassInfo info;
const Identifier &functionName() const
{
return m_name;
}
void setFunctionName(const Identifier &name)
{
m_name = name;
}
private:
Identifier m_name;
#ifdef _WIN32
InternalFunctionImp(const InternalFunctionImp &);
InternalFunctionImp &operator=(const InternalFunctionImp &);
#endif
};
/**
* A minimal object that just throws an exception if executed.
*/
class Thrower : public JSObject
{
public:
Thrower(ErrorType type);
virtual JSValue *callAsFunction(ExecState *exec, JSObject *, const List &args);
virtual bool implementsCall() const
{
return true;
};
private:
ErrorType m_type;
};
class BoundFunction : public InternalFunctionImp
{
public:
explicit BoundFunction(ExecState *exec, JSObject *targetFunction, JSObject *boundThis, List boundArgs);
void setTargetFunction(JSObject *targetFunction);
void setBoundThis(JSObject *boundThis);
void setBoundArgs(const List &boundArgs);
virtual JSValue *callAsFunction(ExecState *exec, JSObject *thisObj, const List &extraArgs);
virtual bool implementsCall() const
{
return true;
};
using KJS::JSObject::construct;
virtual JSObject *construct(ExecState *exec, const List &extraArgs);
virtual bool implementsConstruct() const
{
return true;
};
virtual bool hasInstance(ExecState *exec, JSValue *value);
virtual bool implementsHasInstance() const
{
return true;
};
private:
ProtectedPtr<JSObject> m_targetFunction;
ProtectedPtr<JSObject> m_boundThis;
List m_boundArgs;
};
/**
* @internal
*
* The initial value of Function.prototype (and thus all objects created
* with the Function constructor)
*/
class KJS_EXPORT FunctionPrototype : public InternalFunctionImp
{
public:
FunctionPrototype(ExecState *exec);
virtual ~FunctionPrototype();
virtual JSValue *callAsFunction(ExecState *exec, JSObject *thisObj, const List &args);
};
class IndexToNameMap
{
public:
IndexToNameMap(FunctionImp *func, const List &args);
~IndexToNameMap();
Identifier &operator[](int index);
Identifier &operator[](const Identifier &indexIdentifier);
bool isMapped(const Identifier &index) const;
void unMap(const Identifier &index);
int size() const;
private:
IndexToNameMap(); // prevent construction w/o parameters
int _size;
Identifier *_map;
};
class Arguments : public JSObject
{
public:
Arguments(ExecState *exec, FunctionImp *func, const List &args, ActivationImp *act);
virtual void mark();
using KJS::JSObject::getOwnPropertySlot;
virtual bool getOwnPropertySlot(ExecState *, const Identifier &, PropertySlot &);
using KJS::JSObject::put;
virtual void put(ExecState *exec, const Identifier &propertyName, JSValue *value, int attr = None);
using KJS::JSObject::deleteProperty;
virtual bool deleteProperty(ExecState *exec, const Identifier &propertyName);
virtual void getOwnPropertyNames(ExecState *, PropertyNameArray &, PropertyMap::PropertyMode mode);
virtual bool defineOwnProperty(ExecState *exec, const Identifier &propertyName, PropertyDescriptor &desc, bool shouldThrow);
virtual const ClassInfo *classInfo() const
{
return &info;
}
static const ClassInfo info;
private:
static JSValue *mappedIndexGetter(ExecState *exec, JSObject *, const Identifier &, const PropertySlot &slot);
ActivationImp *_activationObject;
mutable IndexToNameMap indexToNameMap;
};
class ActivationImp : public JSVariableObject
{
public:
enum {
FunctionSlot = NumVarObjectSlots,
ArgumentsObjectSlot,
NumReservedSlots = ArgumentsObjectSlot + 1
};
void setup(ExecState *exec, FunctionImp *function, const List *arguments,
LocalStorageEntry *stackSpace);
// Request that this activation be torn off when the code using it stops running
void requestTearOff();
void performTearOff();
using KJS::JSObject::getOwnPropertySlot;
virtual bool getOwnPropertySlot(ExecState *exec, const Identifier &, PropertySlot &);
using KJS::JSObject::put;
virtual void put(ExecState *exec, const Identifier &propertyName, JSValue *value, int attr = None);
using KJS::JSObject::deleteProperty;
virtual bool deleteProperty(ExecState *exec, const Identifier &propertyName);
virtual void putDirect(const Identifier &propertyName, JSValue *value, int attr = 0);
using JSObject::putDirect;
virtual JSValue *getDirect(const Identifier &propertyName) const;
virtual bool getPropertyAttributes(const Identifier &propertyName, unsigned &attributes) const;
bool isLocalReadOnly(int propertyID) const
{
return (localStorage[propertyID].attributes & ReadOnly) == ReadOnly;
}
virtual const ClassInfo *classInfo() const
{
return &info;
}
static const ClassInfo info;
virtual bool isActivation() const
{
return true;
}
void setupLocals(FunctionBodyNode *fbody);
void setupFunctionLocals(FunctionBodyNode *fbody, ExecState *exec);
const List &passedInArguments() const
{
return *arguments;
}
// really FunctionImp, but type isn't declared yet
JSValue *function()
{
return functionSlot();
}
private:
JSValue *&functionSlot()
{
return localStorage[FunctionSlot].val.valueVal;
}
JSValue *&argumentsObjectSlot()
{
return localStorage[ArgumentsObjectSlot].val.valueVal;
}
static PropertySlot::GetValueFunc getArgumentsGetter();
static JSValue *argumentsGetter(ExecState *exec, JSObject *, const Identifier &, const PropertySlot &slot);
void createArgumentsObject(ExecState *exec);
int numLocals() const
{
return lengthSlot();
}
bool validLocal(int id) const
{
return 0 <= id && id < numLocals();
}
const List *arguments;
};
class GlobalFuncImp : public InternalFunctionImp
{
public:
GlobalFuncImp(ExecState *, FunctionPrototype *, int i, int len, const Identifier &);
virtual JSValue *callAsFunction(ExecState *exec, JSObject *thisObj, const List &args);
enum { Eval, ParseInt, ParseFloat, IsNaN, IsFinite, Escape, UnEscape,
DecodeURI, DecodeURIComponent, EncodeURI, EncodeURIComponent
#ifndef NDEBUG
, KJSPrint
#endif
};
private:
int id;
};
static const double mantissaOverflowLowerBound = 9007199254740992.0;
double parseIntOverflow(const char *s, int length, int radix);
double parseInt(const UString &s, int radix);
double parseFloat(const UString &s);
} // namespace
#endif
|