Changeset 31949 in webkit for trunk/JavaScriptCore/kjs/object.cpp
- Timestamp:
- Apr 16, 2008, 12:08:03 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/object.cpp
r31746 r31949 34 34 #include "PropertyNameArray.h" 35 35 #include <math.h> 36 #include <profiler/Profiler.h> 36 37 #include <wtf/Assertions.h> 37 38 … … 94 95 #endif 95 96 96 JSValue* ret = callAsFunction(exec, thisObj, args); 97 #if JAVASCRIPT_PROFILING 98 Profiler::profiler()->willExecute(exec, this); 99 #endif 100 101 JSValue *ret = callAsFunction(exec,thisObj,args); 102 103 #if JAVASCRIPT_PROFILING 104 Profiler::profiler()->didExecute(exec, this); 105 #endif 106 97 107 98 108 #if KJS_MAX_STACK > 0
Note:
See TracChangeset
for help on using the changeset viewer.