| Index: src/debug/debug.h
|
| diff --git a/src/debug.h b/src/debug/debug.h
|
| similarity index 99%
|
| rename from src/debug.h
|
| rename to src/debug/debug.h
|
| index 49554f7ab889130da5ffa454695f693f5e06071e..e14457ac7ed812829c348a2166a7fffc722ed999 100644
|
| --- a/src/debug.h
|
| +++ b/src/debug/debug.h
|
| @@ -2,20 +2,20 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef V8_DEBUG_H_
|
| -#define V8_DEBUG_H_
|
| +#ifndef V8_DEBUG_DEBUG_H_
|
| +#define V8_DEBUG_DEBUG_H_
|
|
|
| #include "src/allocation.h"
|
| #include "src/arguments.h"
|
| #include "src/assembler.h"
|
| #include "src/base/atomicops.h"
|
| #include "src/base/platform/platform.h"
|
| +#include "src/debug/liveedit.h"
|
| #include "src/execution.h"
|
| #include "src/factory.h"
|
| #include "src/flags.h"
|
| #include "src/frames-inl.h"
|
| #include "src/hashmap.h"
|
| -#include "src/liveedit.h"
|
| #include "src/runtime/runtime.h"
|
| #include "src/string-stream.h"
|
| #include "src/v8threads.h"
|
| @@ -56,7 +56,7 @@ enum BreakLocatorType { ALL_BREAK_LOCATIONS, CALLS_AND_RETURNS };
|
|
|
|
|
| // The different types of breakpoint position alignments.
|
| -// Must match Debug.BreakPositionAlignment in debug-debugger.js
|
| +// Must match Debug.BreakPositionAlignment in debug.js
|
| enum BreakPositionAlignment {
|
| STATEMENT_ALIGNED = 0,
|
| BREAK_POSITION_ALIGNED = 1
|
| @@ -792,4 +792,4 @@ class DebugCodegen : public AllStatic {
|
|
|
| } } // namespace v8::internal
|
|
|
| -#endif // V8_DEBUG_H_
|
| +#endif // V8_DEBUG_DEBUG_H_
|
|
|