| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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/debug/debug-evaluate.h" | 5 #include "src/debug/debug-evaluate.h" |
| 6 | 6 |
| 7 #include "src/accessors.h" | 7 #include "src/accessors.h" |
| 8 #include "src/contexts.h" | 8 #include "src/contexts.h" |
| 9 #include "src/debug/debug.h" | 9 #include "src/debug/debug.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/frames-inl.h" |
| 13 #include "src/isolate.h" | 13 #include "src/isolate-inl.h" |
| 14 | 14 |
| 15 namespace v8 { | 15 namespace v8 { |
| 16 namespace internal { | 16 namespace internal { |
| 17 | 17 |
| 18 static inline bool IsDebugContext(Isolate* isolate, Context* context) { | 18 static inline bool IsDebugContext(Isolate* isolate, Context* context) { |
| 19 return context->native_context() == *isolate->debug()->debug_context(); | 19 return context->native_context() == *isolate->debug()->debug_context(); |
| 20 } | 20 } |
| 21 | 21 |
| 22 | 22 |
| 23 MaybeHandle<Object> DebugEvaluate::Global(Isolate* isolate, | 23 MaybeHandle<Object> DebugEvaluate::Global(Isolate* isolate, |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 // to materialize. | 305 // to materialize. |
| 306 return target; | 306 return target; |
| 307 } | 307 } |
| 308 | 308 |
| 309 return isolate_->factory()->NewCatchContext( | 309 return isolate_->factory()->NewCatchContext( |
| 310 function, target, isolate_->factory()->this_string(), receiver); | 310 function, target, isolate_->factory()->this_string(), receiver); |
| 311 } | 311 } |
| 312 | 312 |
| 313 } // namespace internal | 313 } // namespace internal |
| 314 } // namespace v8 | 314 } // namespace v8 |
| OLD | NEW |