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

Unified Diff: src/debug/liveedit.cc

Issue 2065933002: [gcmole] Fix source files pattern in GYP parsing. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix found issues. Created 4 years, 6 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
« no previous file with comments | « no previous file | tools/gcmole/gcmole.lua » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/debug/liveedit.cc
diff --git a/src/debug/liveedit.cc b/src/debug/liveedit.cc
index 39db3dbcca572b7c04d9173aaf21aef7ac5ec7ab..cc21f2dd46b015dd0dff10c3920ab95d97f2bced 100644
--- a/src/debug/liveedit.cc
+++ b/src/debug/liveedit.cc
@@ -1255,7 +1255,8 @@ void PatchPositionsInBytecodeArray(Handle<BytecodeArray> bytecode,
iterator.is_statement());
}
- bytecode->set_source_position_table(*builder.ToSourcePositionTable());
+ Handle<ByteArray> source_position_table = builder.ToSourcePositionTable();
+ bytecode->set_source_position_table(*source_position_table);
}
} // namespace
« no previous file with comments | « no previous file | tools/gcmole/gcmole.lua » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698