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

Unified Diff: test/cctest/wasm/test-wasm-breakpoints.cc

Issue 2728563002: [inspector] added type of break location into getPossibleBreakpoints output (Closed)
Patch Set: added DCHECK Created 3 years, 9 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
Index: test/cctest/wasm/test-wasm-breakpoints.cc
diff --git a/test/cctest/wasm/test-wasm-breakpoints.cc b/test/cctest/wasm/test-wasm-breakpoints.cc
index 78e949b0853dd8dba1eed57294ceee99d5c8c79d..1dc83b1c4b00eecbf20f36f31c51d306e126cd38 100644
--- a/test/cctest/wasm/test-wasm-breakpoints.cc
+++ b/test/cctest/wasm/test-wasm-breakpoints.cc
@@ -25,7 +25,7 @@ void CheckLocations(
WasmCompiledModule *compiled_module, debug::Location start,
debug::Location end,
std::initializer_list<debug::Location> expected_locations_init) {
- std::vector<debug::Location> locations;
+ std::vector<debug::BreakLocation> locations;
bool success =
compiled_module->GetPossibleBreakpoints(start, end, &locations);
CHECK(success);
@@ -48,7 +48,7 @@ void CheckLocations(
}
void CheckLocationsFail(WasmCompiledModule *compiled_module,
debug::Location start, debug::Location end) {
- std::vector<debug::Location> locations;
+ std::vector<debug::BreakLocation> locations;
bool success =
compiled_module->GetPossibleBreakpoints(start, end, &locations);
CHECK(!success);
« no previous file with comments | « src/wasm/wasm-objects.cc ('k') | test/inspector/debugger/get-possible-breakpoints-array-literal-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698