| Index: src/debug.cc
 | 
| diff --git a/src/debug.cc b/src/debug.cc
 | 
| index 99256ba21a88a8510978e5578ab0c4f541982b0a..88a976f8dccb778ba72d1b94ca144ebe1f020995 100644
 | 
| --- a/src/debug.cc
 | 
| +++ b/src/debug.cc
 | 
| @@ -2227,6 +2227,13 @@ void Debug::FramesHaveBeenDropped(StackFrame::Id new_break_frame_id,
 | 
|  }
 | 
|  
 | 
|  
 | 
| +const int Debug::FramePaddingLayout::kInitialSize = 1;
 | 
| +
 | 
| +
 | 
| +// Any even value bigger than kInitialSize as needed for stack scanning.
 | 
| +const int Debug::FramePaddingLayout::kPaddingValue = kInitialSize + 1;
 | 
| +
 | 
| +
 | 
|  bool Debug::IsDebugGlobal(GlobalObject* global) {
 | 
|    return IsLoaded() && global == debug_context()->global();
 | 
|  }
 | 
| 
 |