Changeset 43619 in webkit for trunk/JavaScriptCore/parser/Nodes.cpp
- Timestamp:
- May 13, 2009, 2:10:02 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/parser/Nodes.cpp
r43559 r43619 1833 1833 { 1834 1834 #if ENABLE(CODEBLOCK_SAMPLING) 1835 globalData->interpreter->sampler()->notifyOfScope(this); 1835 if (SamplingTool* sampler = globalData->interpreter->sampler()) 1836 sampler->notifyOfScope(this); 1836 1837 #endif 1837 1838 } … … 1845 1846 { 1846 1847 #if ENABLE(CODEBLOCK_SAMPLING) 1847 globalData->interpreter->sampler()->notifyOfScope(this); 1848 if (SamplingTool* sampler = globalData->interpreter->sampler()) 1849 sampler->notifyOfScope(this); 1848 1850 #endif 1849 1851 }
Note:
See TracChangeset
for help on using the changeset viewer.