From bbbd930283f9b43c987dcaa67a80d961f6a4830a Mon Sep 17 00:00:00 2001 From: Ben Konyi Date: Thu, 24 May 2018 17:34:25 -0700 Subject: [PATCH] Removed sync_async flag from engine which was causing snapshot errors. (#5367) Will be reenabled when sync-async is on by default in flutter/flutter. --- runtime/dart_vm.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runtime/dart_vm.cc b/runtime/dart_vm.cc index a61413b17..a97ba89a1 100644 --- a/runtime/dart_vm.cc +++ b/runtime/dart_vm.cc @@ -91,7 +91,8 @@ static const char* kDartStrongModeArgs[] = { "--strong", "--reify_generic_functions", "--limit_ints_to_64_bits", - "--sync_async", + // TODO(bkonyi): uncomment when sync-async is enabled in flutter/flutter. + // "--sync_async", // clang-format on };