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

Unified Diff: runtime/vm/object.cc

Issue 1361423004: Don't use a special var descriptor for :async_op since it can now be either stack or context alloca… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: also assert async op is either closure or null Created 5 years, 3 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/debugger.cc ('k') | runtime/vm/raw_object.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.cc
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
index 868ef91e882c433878702abf3d5e082c324b80e6..7a90263b866d9fd35b7c35b8068fc4499fc0e9a7 100644
--- a/runtime/vm/object.cc
+++ b/runtime/vm/object.cc
@@ -11470,9 +11470,6 @@ static const char* VarKindString(int kind) {
case RawLocalVarDescriptors::kSavedCurrentContext:
return "CurrentCtx";
break;
- case RawLocalVarDescriptors::kAsyncOperation:
- return "AsyncOperation";
- break;
default:
UNREACHABLE();
return "Unknown";
@@ -11589,8 +11586,6 @@ const char* LocalVarDescriptors::KindToStr(intptr_t kind) {
return "ContextLevel";
case RawLocalVarDescriptors::kSavedCurrentContext:
return "SavedCurrentContext";
- case RawLocalVarDescriptors::kAsyncOperation:
- return "AsyncOperation";
default:
UNIMPLEMENTED();
return NULL;
« no previous file with comments | « runtime/vm/debugger.cc ('k') | runtime/vm/raw_object.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698