| Index: runtime/vm/kernel_binary_flowgraph.cc
|
| diff --git a/runtime/vm/kernel_binary_flowgraph.cc b/runtime/vm/kernel_binary_flowgraph.cc
|
| index a70c71d1ee8d169a4118b853d80f4ca44270eb41..34a20248b9bb9d8047dbf2d32c18c374395226b6 100644
|
| --- a/runtime/vm/kernel_binary_flowgraph.cc
|
| +++ b/runtime/vm/kernel_binary_flowgraph.cc
|
| @@ -439,6 +439,7 @@ void StreamingScopeBuilder::VisitFunctionNode() {
|
|
|
| void StreamingScopeBuilder::VisitInitializer() {
|
| Tag tag = builder_->ReadTag();
|
| + builder_->ReadByte(); // read isSynthetic flag.
|
| switch (tag) {
|
| case kInvalidInitializer:
|
| return;
|
| @@ -2850,6 +2851,7 @@ Fragment StreamingFlowGraphBuilder::BuildInitializers(
|
| intptr_t list_length = ReadListLength(); // read initializers list length.
|
| for (intptr_t i = 0; i < list_length; ++i) {
|
| Tag tag = ReadTag();
|
| + ReadByte(); // read isSynthetic flag.
|
| switch (tag) {
|
| case kInvalidInitializer:
|
| UNIMPLEMENTED();
|
|
|