| Index: src/execution.h
|
| diff --git a/src/execution.h b/src/execution.h
|
| index d4838519408124b16f55420ddd2de1ce5a4d68ff..c165faba0b16651b70df477cd38c88bbd8eb9f51 100644
|
| --- a/src/execution.h
|
| +++ b/src/execution.h
|
| @@ -118,10 +118,9 @@ class Execution V8_FINAL : public AllStatic {
|
| Handle<JSFunction> fun,
|
| Handle<Object> pos,
|
| Handle<Object> is_global);
|
| -#ifdef ENABLE_DEBUGGER_SUPPORT
|
| +
|
| static Object* DebugBreakHelper(Isolate* isolate);
|
| static void ProcessDebugMessages(Isolate* isolate, bool debug_command_only);
|
| -#endif
|
|
|
| // If the stack guard is triggered, but it is not an actual
|
| // stack overflow, then handle the interruption accordingly.
|
| @@ -179,12 +178,10 @@ class StackGuard V8_FINAL {
|
| bool IsTerminateExecution();
|
| void TerminateExecution();
|
| void CancelTerminateExecution();
|
| -#ifdef ENABLE_DEBUGGER_SUPPORT
|
| bool IsDebugBreak();
|
| void DebugBreak();
|
| bool IsDebugCommand();
|
| void DebugCommand();
|
| -#endif
|
| bool IsGCRequest();
|
| void RequestGC();
|
| bool IsInstallCodeRequest();
|
|
|