Ignore:
Timestamp:
Oct 1, 2016, 8:32:59 AM (9 years ago)
Author:
[email protected]
Message:

Rename DebugHookID to DebugHookType
https://bugs.webkit.org/show_bug.cgi?id=162820

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2016-10-01
Reviewed by Alex Christensen.

  • bytecode/CodeBlock.cpp:

(JSC::debugHookName):
(JSC::CodeBlock::dumpBytecode):

  • bytecompiler/BytecodeGenerator.cpp:

(JSC::BytecodeGenerator::emitDebugHook):

  • bytecompiler/BytecodeGenerator.h:
  • interpreter/Interpreter.cpp:

(JSC::Interpreter::debug):

  • interpreter/Interpreter.h:
  • jit/JITOperations.cpp:
  • llint/LLIntSlowPaths.cpp:

(JSC::LLInt::LLINT_SLOW_PATH_DECL):

File:
1 edited

Legend:

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

    r206652 r206707  
    12211221}
    12221222
    1223 NEVER_INLINE void Interpreter::debug(CallFrame* callFrame, DebugHookID debugHookID)
     1223NEVER_INLINE void Interpreter::debug(CallFrame* callFrame, DebugHookType debugHookType)
    12241224{
    12251225    VM& vm = callFrame->vm();
     
    12321232    ASSERT_UNUSED(scope, !scope.exception());
    12331233
    1234     switch (debugHookID) {
     1234    switch (debugHookType) {
    12351235        case DidEnterCallFrame:
    12361236            debugger->callEvent(callFrame);
Note: See TracChangeset for help on using the changeset viewer.