Changeset 29508 in webkit for trunk/JavaScriptCore/kjs/function.h
- Timestamp:
- Jan 15, 2008, 10:43:15 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/function.h
r29425 r29508 139 139 }; 140 140 141 class PrototypeFunction : public InternalFunctionImp { 142 public: 143 typedef KJS::JSValue* (*JSMemberFunction)(ExecState*, JSObject*, const List&); 144 145 PrototypeFunction(ExecState*, int len, const Identifier&, JSMemberFunction); 146 147 virtual JSValue* callAsFunction(ExecState* exec, JSObject* thisObj, const List&); 148 149 private: 150 const JSMemberFunction m_function; 151 }; 152 141 153 class GlobalFuncImp : public InternalFunctionImp { 142 154 public:
Note:
See TracChangeset
for help on using the changeset viewer.