Changeset 12564 in webkit for trunk/JavaScriptCore/kjs/object.cpp
- Timestamp:
- Feb 4, 2006, 5:43:16 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/object.cpp
r12317 r12564 328 328 } 329 329 330 static inline 331 #ifdef __GNUC__ 332 __attribute__((always_inline)) 333 #endif 334 JSValue *tryGetAndCallProperty(ExecState *exec, const JSObject *object, const Identifier &propertyName) { 330 static ALWAYS_INLINE JSValue *tryGetAndCallProperty(ExecState *exec, const JSObject *object, const Identifier &propertyName) { 335 331 JSValue *v = object->get(exec, propertyName); 336 332 if (v->isObject()) {
Note:
See TracChangeset
for help on using the changeset viewer.