Changeset 155494 in webkit


Ignore:
Timestamp:
Sep 10, 2013, 5:35:22 PM (12 years ago)
Author:
mark.lam@apple.com
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()):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r155487 r155494  
     12013-09-10  Mark Lam  <mark.lam@apple.com>
     2
     3        Fix some indentation in Interpreter.cpp.
     4        https://bugs.webkit.org/show_bug.cgi?id=121136.
     5
     6        Reviewed by Darin Adler.
     7
     8        * interpreter/Interpreter.cpp:
     9        (JSC::UnwindFunctor::operator()):
     10
    1112013-09-10  Mark Hahnenberg  <mhahnenberg@apple.com>
    212
  • 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.