Changeset 12921 in webkit for trunk/JavaScriptCore/kjs/function_object.h
- Timestamp:
- Feb 21, 2006, 8:57:53 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/function_object.h
r12911 r12921 40 40 virtual ~FunctionPrototype(); 41 41 42 virtual bool implementsCall() const;43 42 virtual JSValue *callAsFunction(ExecState *exec, JSObject *thisObj, const List &args); 44 43 }; … … 54 53 FunctionProtoFunc(ExecState*, FunctionPrototype*, int i, int len, const Identifier&); 55 54 56 virtual bool implementsCall() const;57 55 virtual JSValue *callAsFunction(ExecState *exec, JSObject *thisObj, const List &args); 58 56 … … 75 73 virtual JSObject *construct(ExecState *exec, const List &args, const UString &sourceURL, int lineNumber); 76 74 virtual JSObject *construct(ExecState *exec, const List &args); 77 virtual bool implementsCall() const;78 75 virtual JSValue *callAsFunction(ExecState *exec, JSObject *thisObj, const List &args); 79 76 };
Note:
See TracChangeset
for help on using the changeset viewer.