Changeset 11527 in webkit for trunk/JavaScriptCore/bindings/runtime_method.h
- Timestamp:
- Dec 10, 2005, 6:06:17 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bindings/runtime_method.h
r10084 r11527 32 32 33 33 34 class RuntimeMethod Imp: public FunctionImp34 class RuntimeMethod : public FunctionImp 35 35 { 36 36 public: 37 RuntimeMethod Imp(ExecState *exec, const Identifier &n, Bindings::MethodList &methodList);37 RuntimeMethod(ExecState *exec, const Identifier &n, Bindings::MethodList &methodList); 38 38 39 virtual ~RuntimeMethod Imp();39 virtual ~RuntimeMethod(); 40 40 41 41 virtual bool getOwnPropertySlot(ExecState *, const Identifier&, PropertySlot&); 42 42 43 43 virtual bool implementsCall() const; 44 virtual ValueImp *callAsFunction(ExecState *exec, ObjectImp*thisObj, const List &args);44 virtual JSValue *callAsFunction(ExecState *exec, JSObject *thisObj, const List &args); 45 45 46 46 virtual CodeType codeType() const; … … 49 49 50 50 private: 51 static ValueImp*lengthGetter(ExecState *, const Identifier&, const PropertySlot&);51 static JSValue *lengthGetter(ExecState *, const Identifier&, const PropertySlot&); 52 52 53 53 Bindings::MethodList _methodList;
Note:
See TracChangeset
for help on using the changeset viewer.