Changeset 12911 in webkit for trunk/JavaScriptCore/kjs/internal.h
- Timestamp:
- Feb 20, 2006, 11:54:55 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/internal.h
r12728 r12911 349 349 public: 350 350 InternalFunctionImp(); 351 InternalFunctionImp(FunctionPrototype *funcProto); 351 InternalFunctionImp(FunctionPrototype*); 352 InternalFunctionImp(FunctionPrototype*, const Identifier&); 352 353 bool implementsHasInstance() const; 353 354 bool hasInstance(ExecState *exec, JSValue *value); … … 355 356 virtual const ClassInfo *classInfo() const { return &info; } 356 357 static const ClassInfo info; 358 const Identifier& functionName() const { return m_name; } 359 private: 360 Identifier m_name; 357 361 }; 358 362
Note:
See TracChangeset
for help on using the changeset viewer.