Changeset 6086 in webkit for trunk/JavaScriptCore/bindings/runtime_method.h
- Timestamp:
- Feb 13, 2004, 2:39:36 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bindings/runtime_method.h
r5919 r6086 35 35 { 36 36 public: 37 RuntimeMethodImp(ExecState *exec, const Identifier &n = Identifier::null(), Bindings::MethodList *methodList = 0);37 RuntimeMethodImp(ExecState *exec, const Identifier &n, Bindings::MethodList &methodList); 38 38 39 39 virtual ~RuntimeMethodImp(); … … 49 49 50 50 private: 51 Bindings::MethodList *_methodList;51 Bindings::MethodList _methodList; 52 52 }; 53 53
Note:
See TracChangeset
for help on using the changeset viewer.