Changeset 53437 in webkit for trunk/JavaScriptCore/runtime/JSObject.h
- Timestamp:
- Jan 18, 2010, 4:02:40 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSObject.h
r53170 r53437 382 382 // It may seem crazy to inline a function this large but it makes a big difference 383 383 // since this is function very hot in variable lookup 384 inlinebool JSObject::getPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)384 ALWAYS_INLINE bool JSObject::getPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) 385 385 { 386 386 JSObject* object = this; … … 395 395 } 396 396 397 inlinebool JSObject::getPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot)397 ALWAYS_INLINE bool JSObject::getPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot) 398 398 { 399 399 JSObject* object = this;
Note:
See TracChangeset
for help on using the changeset viewer.