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

Unified Diff: runtime/vm/kernel_binary_flowgraph.h

Issue 2983413002: Resynthesize constructor initializers from Kernel. (Closed)
Patch Set: Created 3 years, 5 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: runtime/vm/kernel_binary_flowgraph.h
diff --git a/runtime/vm/kernel_binary_flowgraph.h b/runtime/vm/kernel_binary_flowgraph.h
index cf9b60e203cff1b677f125b08fa8ffe5ea9e8fe3..be7196884cb58264ba32f2d44c93b8db0fc588a7 100644
--- a/runtime/vm/kernel_binary_flowgraph.h
+++ b/runtime/vm/kernel_binary_flowgraph.h
@@ -1189,6 +1189,7 @@ class ConstructorHelper {
builder_->ReadListLength(); // read initializers list length.
for (intptr_t i = 0; i < list_length; i++) {
Tag tag = builder_->ReadTag();
+ builder_->ReadByte(); // read isSynthetic.
switch (tag) {
case kInvalidInitializer:
continue;

Powered by Google App Engine
This is Rietveld 408576698