Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(706)

Side by Side Diff: src/debug/liveedit.cc

Issue 1265923002: Debugger: move implementation to a separate folder. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebase Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/debug/liveedit.h ('k') | src/debug/liveedit.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/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.h" 13 #include "src/debug/debug.h"
14 #include "src/deoptimizer.h" 14 #include "src/deoptimizer.h"
15 #include "src/global-handles.h" 15 #include "src/global-handles.h"
16 #include "src/messages.h" 16 #include "src/messages.h"
17 #include "src/parser.h" 17 #include "src/parser.h"
18 #include "src/scopeinfo.h" 18 #include "src/scopeinfo.h"
19 #include "src/scopes.h" 19 #include "src/scopes.h"
20 #include "src/v8memory.h" 20 #include "src/v8memory.h"
21 21
22 namespace v8 { 22 namespace v8 {
23 namespace internal { 23 namespace internal {
(...skipping 1996 matching lines...) Expand 10 before | Expand all | Expand 10 after
2020 isolate_->active_function_info_listener()->FunctionCode(code); 2020 isolate_->active_function_info_listener()->FunctionCode(code);
2021 } 2021 }
2022 2022
2023 2023
2024 bool LiveEditFunctionTracker::IsActive(Isolate* isolate) { 2024 bool LiveEditFunctionTracker::IsActive(Isolate* isolate) {
2025 return isolate->active_function_info_listener() != NULL; 2025 return isolate->active_function_info_listener() != NULL;
2026 } 2026 }
2027 2027
2028 } // namespace internal 2028 } // namespace internal
2029 } // namespace v8 2029 } // namespace v8
OLDNEW
« no previous file with comments | « src/debug/liveedit.h ('k') | src/debug/liveedit.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698