Changeset 15482 in webkit for trunk/JavaScriptCore/API/JSCallbackConstructor.h
- Timestamp:
- Jul 17, 2006, 1:20:28 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSCallbackConstructor.h
r15469 r15482 29 29 30 30 #include "JSObjectRef.h" 31 #include "object.h"31 #include <kjs/object.h> 32 32 33 33 namespace KJS { 34 34 35 35 class JSCallbackConstructor : public JSObject 36 36 { … … 38 38 JSCallbackConstructor(ExecState* exec, JSObjectCallAsConstructorCallback callback); 39 39 40 virtual bool implementsHasInstance() const; 41 40 42 virtual bool implementsConstruct() const; 41 43 virtual JSObject* construct(ExecState*, const List &args); 42 44 43 45 virtual const ClassInfo *classInfo() const { return &info; } 44 46 static const ClassInfo info;
Note:
See TracChangeset
for help on using the changeset viewer.