| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "src/v8.h" | 5 #include "src/v8.h" |
| 6 | 6 |
| 7 #include "src/arguments.h" | 7 #include "src/arguments.h" |
| 8 #include "src/debug/debug.h" | 8 #include "src/debug/debug.h" |
| 9 #include "src/debug/debug-evaluate.h" | 9 #include "src/debug/debug-evaluate.h" |
| 10 #include "src/debug/debug-frames.h" | 10 #include "src/debug/debug-frames.h" |
| 11 #include "src/debug/debug-scopes.h" | 11 #include "src/debug/debug-scopes.h" |
| 12 #include "src/frames-inl.h" |
| 12 #include "src/runtime/runtime.h" | 13 #include "src/runtime/runtime.h" |
| 13 #include "src/runtime/runtime-utils.h" | 14 #include "src/runtime/runtime-utils.h" |
| 14 | 15 |
| 15 namespace v8 { | 16 namespace v8 { |
| 16 namespace internal { | 17 namespace internal { |
| 17 | 18 |
| 18 RUNTIME_FUNCTION(Runtime_DebugBreak) { | 19 RUNTIME_FUNCTION(Runtime_DebugBreak) { |
| 19 SealHandleScope shs(isolate); | 20 SealHandleScope shs(isolate); |
| 20 DCHECK(args.length() == 0); | 21 DCHECK(args.length() == 0); |
| 21 // Get the top-most JavaScript frame. | 22 // Get the top-most JavaScript frame. |
| (...skipping 1799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1821 return *isolate->factory()->undefined_value(); | 1822 return *isolate->factory()->undefined_value(); |
| 1822 } | 1823 } |
| 1823 | 1824 |
| 1824 | 1825 |
| 1825 RUNTIME_FUNCTION(Runtime_DebugBreakInOptimizedCode) { | 1826 RUNTIME_FUNCTION(Runtime_DebugBreakInOptimizedCode) { |
| 1826 UNIMPLEMENTED(); | 1827 UNIMPLEMENTED(); |
| 1827 return NULL; | 1828 return NULL; |
| 1828 } | 1829 } |
| 1829 } // namespace internal | 1830 } // namespace internal |
| 1830 } // namespace v8 | 1831 } // namespace v8 |
| OLD | NEW |