| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 | 5 |
| 6 #include "src/v8.h" | 6 #include "src/v8.h" |
| 7 | 7 |
| 8 #include "src/debug/liveedit.h" | 8 #include "src/debug/liveedit.h" |
| 9 | 9 |
| 10 #include "src/code-stubs.h" | 10 #include "src/code-stubs.h" |
| 11 #include "src/compilation-cache.h" | 11 #include "src/compilation-cache.h" |
| 12 #include "src/compiler.h" | 12 #include "src/compiler.h" |
| 13 #include "src/debug/debug.h" | 13 #include "src/debug/debug.h" |
| 14 #include "src/deoptimizer.h" | 14 #include "src/deoptimizer.h" |
| 15 #include "src/frames-inl.h" |
| 15 #include "src/global-handles.h" | 16 #include "src/global-handles.h" |
| 16 #include "src/messages.h" | 17 #include "src/messages.h" |
| 17 #include "src/parser.h" | 18 #include "src/parser.h" |
| 18 #include "src/scopeinfo.h" | 19 #include "src/scopeinfo.h" |
| 19 #include "src/scopes.h" | 20 #include "src/scopes.h" |
| 20 #include "src/v8memory.h" | 21 #include "src/v8memory.h" |
| 21 | 22 |
| 22 namespace v8 { | 23 namespace v8 { |
| 23 namespace internal { | 24 namespace internal { |
| 24 | 25 |
| (...skipping 1995 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2020 isolate_->active_function_info_listener()->FunctionCode(code); | 2021 isolate_->active_function_info_listener()->FunctionCode(code); |
| 2021 } | 2022 } |
| 2022 | 2023 |
| 2023 | 2024 |
| 2024 bool LiveEditFunctionTracker::IsActive(Isolate* isolate) { | 2025 bool LiveEditFunctionTracker::IsActive(Isolate* isolate) { |
| 2025 return isolate->active_function_info_listener() != NULL; | 2026 return isolate->active_function_info_listener() != NULL; |
| 2026 } | 2027 } |
| 2027 | 2028 |
| 2028 } // namespace internal | 2029 } // namespace internal |
| 2029 } // namespace v8 | 2030 } // namespace v8 |
| OLD | NEW |