Changeset 120751 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.h
- Timestamp:
- Jun 19, 2012, 2:06:08 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.h
r120676 r120751 720 720 721 721 bool hasExpressionInfo() { return m_rareData && m_rareData->m_expressionInfo.size(); } 722 // We only generate exception handling info if the user is debugging723 // (and may want line number info), or if the function contains exception handler.724 bool needsCallReturnIndices()725 {726 return true || (m_rareData727 && (m_rareData->m_expressionInfo.size() || m_rareData->m_exceptionHandlers.size()));728 }729 722 730 723 #if ENABLE(JIT)
Note:
See TracChangeset
for help on using the changeset viewer.