Changeset 278253 in webkit for trunk/Source/JavaScriptCore/debugger/DebuggerCallFrame.cpp
- Timestamp:
- May 30, 2021, 9:11:40 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/debugger/DebuggerCallFrame.cpp
r272580 r278253 309 309 if (isTailDeleted()) { 310 310 CodeBlock* codeBlock = m_shadowChickenFrame.codeBlock; 311 if ( Optional<BytecodeIndex> bytecodeIndex = codeBlock->bytecodeIndexFromCallSiteIndex(m_shadowChickenFrame.callSiteIndex)) {311 if (std::optional<BytecodeIndex> bytecodeIndex = codeBlock->bytecodeIndexFromCallSiteIndex(m_shadowChickenFrame.callSiteIndex)) { 312 312 return TextPosition(OrdinalNumber::fromOneBasedInt(codeBlock->lineNumberForBytecodeIndex(*bytecodeIndex)), 313 313 OrdinalNumber::fromOneBasedInt(codeBlock->columnNumberForBytecodeIndex(*bytecodeIndex)));
Note:
See TracChangeset
for help on using the changeset viewer.