| Index: src/objects/debug-objects-inl.h
|
| diff --git a/src/objects/debug-objects-inl.h b/src/objects/debug-objects-inl.h
|
| index b71c4c0f56e4646a7f125eba17b0d96104fe7936..8eccdf592cff477449a30ab1e4741e25396773fb 100644
|
| --- a/src/objects/debug-objects-inl.h
|
| +++ b/src/objects/debug-objects-inl.h
|
| @@ -18,13 +18,14 @@ namespace internal {
|
| CAST_ACCESSOR(BreakPointInfo)
|
| CAST_ACCESSOR(DebugInfo)
|
|
|
| -ACCESSORS(DebugInfo, shared, SharedFunctionInfo, kSharedFunctionInfoIndex)
|
| -SMI_ACCESSORS(DebugInfo, debugger_hints, kDebuggerHintsIndex)
|
| -ACCESSORS(DebugInfo, debug_bytecode_array, Object, kDebugBytecodeArrayIndex)
|
| -ACCESSORS(DebugInfo, break_points, FixedArray, kBreakPointsStateIndex)
|
| -
|
| -SMI_ACCESSORS(BreakPointInfo, source_position, kSourcePositionIndex)
|
| -ACCESSORS(BreakPointInfo, break_point_objects, Object, kBreakPointObjectsIndex)
|
| +SMI_ACCESSORS(DebugInfo, flags, kFlagsOffset)
|
| +ACCESSORS(DebugInfo, shared, SharedFunctionInfo, kSharedFunctionInfoOffset)
|
| +SMI_ACCESSORS(DebugInfo, debugger_hints, kDebuggerHintsOffset)
|
| +ACCESSORS(DebugInfo, debug_bytecode_array, Object, kDebugBytecodeArrayOffset)
|
| +ACCESSORS(DebugInfo, break_points, FixedArray, kBreakPointsStateOffset)
|
| +
|
| +SMI_ACCESSORS(BreakPointInfo, source_position, kSourcePositionOffset)
|
| +ACCESSORS(BreakPointInfo, break_point_objects, Object, kBreakPointObjectsOffset)
|
|
|
| bool DebugInfo::HasDebugBytecodeArray() {
|
| return debug_bytecode_array()->IsBytecodeArray();
|
|
|