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

Unified Diff: runtime/vm/object_test.cc

Issue 2718353002: Revert "Track the 'awaiter return' call stack..." (Closed)
Patch Set: Created 3 years, 10 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 | « runtime/vm/object_service.cc ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object_test.cc
diff --git a/runtime/vm/object_test.cc b/runtime/vm/object_test.cc
index fdaff296d8042799c93fac5c004a9d339ef4a007..46f8eeaf8aca3339ecbd6272f245e0c38c929fb4 100644
--- a/runtime/vm/object_test.cc
+++ b/runtime/vm/object_test.cc
@@ -2800,14 +2800,10 @@ ISOLATE_UNIT_TEST_CASE(ExceptionHandlers) {
exception_handlers ^= ExceptionHandlers::New(kNumEntries);
const bool kNeedsStackTrace = true;
const bool kNoStackTrace = false;
- exception_handlers.SetHandlerInfo(0, -1, 20u, kNeedsStackTrace, false,
- TokenPosition::kNoSource, true);
- exception_handlers.SetHandlerInfo(1, 0, 30u, kNeedsStackTrace, false,
- TokenPosition::kNoSource, true);
- exception_handlers.SetHandlerInfo(2, -1, 40u, kNoStackTrace, true,
- TokenPosition::kNoSource, true);
- exception_handlers.SetHandlerInfo(3, 1, 150u, kNoStackTrace, true,
- TokenPosition::kNoSource, true);
+ exception_handlers.SetHandlerInfo(0, -1, 20u, kNeedsStackTrace, false);
+ exception_handlers.SetHandlerInfo(1, 0, 30u, kNeedsStackTrace, false);
+ exception_handlers.SetHandlerInfo(2, -1, 40u, kNoStackTrace, true);
+ exception_handlers.SetHandlerInfo(3, 1, 150u, kNoStackTrace, true);
extern void GenerateIncrement(Assembler * assembler);
Assembler _assembler_;
« no previous file with comments | « runtime/vm/object_service.cc ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698