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

Unified Diff: src/debug/liveedit.js

Issue 2218873002: [liveedit] deal with FCG and bytecode... at the same time. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« src/debug/liveedit.cc ('K') | « src/debug/liveedit.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/debug/liveedit.js
diff --git a/src/debug/liveedit.js b/src/debug/liveedit.js
index 36226aafc5fe60ab61f1a0ed2570dfa653927337..e9ee8092a269900dab3a505f8e793579dcbbca6b 100644
--- a/src/debug/liveedit.js
+++ b/src/debug/liveedit.js
@@ -842,11 +842,9 @@
this.start_position = raw_array[1];
this.end_position = raw_array[2];
this.param_num = raw_array[3];
- this.code = raw_array[4];
- this.code_scope_info = raw_array[5];
- this.scope_info = raw_array[6];
- this.outer_index = raw_array[7];
- this.shared_function_info = raw_array[8];
+ this.scope_info = raw_array[4];
+ this.outer_index = raw_array[5];
+ this.shared_function_info = raw_array[6];
this.next_sibling_index = null;
this.raw_array = raw_array;
}
« src/debug/liveedit.cc ('K') | « src/debug/liveedit.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698