Changeset 182038 in webkit for trunk/Source/JavaScriptCore/profiler/LegacyProfiler.cpp
- Timestamp:
- Mar 26, 2015, 4:35:47 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/profiler/LegacyProfiler.cpp
r175203 r182038 202 202 JSFunction* jsFunction = jsDynamicCast<JSFunction*>(function); 203 203 if (jsFunction && !jsFunction->isHostOrBuiltinFunction()) 204 return CallIdentifier(name.isEmpty() ? ASCIILiteral(AnonymousFunction) : name, jsFunction->jsExecutable()->sourceURL(), jsFunction->jsExecutable()-> lineNo(), jsFunction->jsExecutable()->startColumn());204 return CallIdentifier(name.isEmpty() ? ASCIILiteral(AnonymousFunction) : name, jsFunction->jsExecutable()->sourceURL(), jsFunction->jsExecutable()->firstLine(), jsFunction->jsExecutable()->startColumn()); 205 205 return CallIdentifier(name.isEmpty() ? ASCIILiteral(AnonymousFunction) : name, defaultSourceURL, defaultLineNumber, defaultColumnNumber); 206 206 }
Note:
See TracChangeset
for help on using the changeset viewer.