| 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/accessors.h" | 7 #include "src/accessors.h" |
| 8 #include "src/arguments.h" | 8 #include "src/arguments.h" |
| 9 #include "src/compiler.h" | 9 #include "src/compiler.h" |
| 10 #include "src/debug.h" | 10 #include "src/debug.h" |
| (...skipping 3142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3153 RUNTIME_FUNCTION(Runtime_DebugIsActive) { | 3153 RUNTIME_FUNCTION(Runtime_DebugIsActive) { |
| 3154 SealHandleScope shs(isolate); | 3154 SealHandleScope shs(isolate); |
| 3155 return Smi::FromInt(isolate->debug()->is_active()); | 3155 return Smi::FromInt(isolate->debug()->is_active()); |
| 3156 } | 3156 } |
| 3157 | 3157 |
| 3158 | 3158 |
| 3159 RUNTIME_FUNCTION(Runtime_DebugBreakInOptimizedCode) { | 3159 RUNTIME_FUNCTION(Runtime_DebugBreakInOptimizedCode) { |
| 3160 UNIMPLEMENTED(); | 3160 UNIMPLEMENTED(); |
| 3161 return NULL; | 3161 return NULL; |
| 3162 } | 3162 } |
| 3163 } | 3163 } // namespace internal |
| 3164 } // namespace v8::internal | 3164 } // namespace v8 |
| OLD | NEW |