Changeset 64684 in webkit for trunk/JavaScriptCore/runtime/JSObject.h
- Timestamp:
- Aug 4, 2010, 3:21:13 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSObject.h
r64655 r64684 87 87 virtual ~JSObject(); 88 88 89 JSValue& prototype(); 90 const JSValue& prototype() const; 89 JSValue prototype() const; 91 90 void setPrototype(JSValue prototype); 92 91 bool setPrototypeWithCycleCheck(JSValue prototype); … … 314 313 } 315 314 316 inline JSValue& JSObject::prototype() 317 { 318 return m_structure->storedPrototype(); 319 } 320 321 inline const JSValue& JSObject::prototype() const 315 inline JSValue JSObject::prototype() const 322 316 { 323 317 return m_structure->storedPrototype();
Note:
See TracChangeset
for help on using the changeset viewer.