Changeset 33979 in webkit for trunk/JavaScriptCore/kjs/string_object.h
- Timestamp:
- May 21, 2008, 6:20:45 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/string_object.h
r33038 r33979 127 127 class StringObjectImp : public InternalFunctionImp { 128 128 public: 129 StringObjectImp(ExecState *exec, 130 FunctionPrototype *funcProto, 131 StringPrototype *stringProto); 129 StringObjectImp(ExecState*, FunctionPrototype*, StringPrototype*); 132 130 133 virtual bool implementsConstruct() const; 134 virtual JSObject *construct(ExecState *exec, const List &args); 135 virtual JSValue *callAsFunction(ExecState *exec, JSObject *thisObj, const List &args); 131 virtual ConstructType getConstructData(ConstructData&); 132 virtual JSObject* construct(ExecState*, const List&); 133 134 virtual JSValue* callAsFunction(ExecState*, JSObject* thisObj, const List& args); 136 135 }; 137 136
Note:
See TracChangeset
for help on using the changeset viewer.