Ignore:
Timestamp:
Sep 10, 2013, 5:35:22 PM (12 years ago)
Author:
[email protected]
Message:

Fix some indentation in Interpreter.cpp.
https://bugs.webkit.org/show_bug.cgi?id=121136.

Reviewed by Darin Adler.

  • interpreter/Interpreter.cpp:

(JSC::UnwindFunctor::operator()):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp

    r155471 r155494  
    613613
    614614        if (m_isTermination || !(m_handler = m_codeBlock->handlerForBytecodeOffset(bytecodeOffset))) {
    615         if (!unwindCallFrame(visitor, m_exceptionValue)) {
    616             if (LegacyProfiler* profiler = vm.enabledProfiler())
    617                 profiler->exceptionUnwind(m_callFrame);
     615            if (!unwindCallFrame(visitor, m_exceptionValue)) {
     616                if (LegacyProfiler* profiler = vm.enabledProfiler())
     617                    profiler->exceptionUnwind(m_callFrame);
     618                return StackVisitor::Done;
     619            }
     620        } else
    618621            return StackVisitor::Done;
    619         }
    620     } else
    621         return StackVisitor::Done;
    622 
    623     return StackVisitor::Continue;
    624 }
     622
     623        return StackVisitor::Continue;
     624    }
    625625
    626626private:
Note: See TracChangeset for help on using the changeset viewer.