Changeset 21889 in webkit for trunk/JavaScriptCore/kjs/function_object.h
- Timestamp:
- May 30, 2007, 5:19:36 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/function_object.h
r13821 r21889 28 28 29 29 namespace KJS { 30 31 /**32 * @internal33 *34 * The initial value of Function.prototype (and thus all objects created35 * with the Function constructor)36 */37 class FunctionPrototype : public InternalFunctionImp {38 public:39 FunctionPrototype(ExecState *exec);40 virtual ~FunctionPrototype();41 42 virtual JSValue *callAsFunction(ExecState *exec, JSObject *thisObj, const List &args);43 };44 30 45 31 /**
Note:
See TracChangeset
for help on using the changeset viewer.