From 37789650cb1254199426e5de5cc66c2ba63cbaf2 Mon Sep 17 00:00:00 2001 From: Alexander Markov Date: Tue, 2 Jan 2018 14:34:15 -0800 Subject: [PATCH] Enable Dart 2.0 fixed-size integers in Flutter (#4501) --- runtime/dart_init.cc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/runtime/dart_init.cc b/runtime/dart_init.cc index e32249d245..4049fbb7fe 100644 --- a/runtime/dart_init.cc +++ b/runtime/dart_init.cc @@ -92,10 +92,8 @@ namespace { // Arguments passed to the Dart VM in all configurations. static const char* kDartLanguageArgs[] = { - "--enable_mirrors=false", - "--background_compilation", - "--await_is_keyword", - "--causal_async_stacks", + "--enable_mirrors=false", "--background_compilation", "--await_is_keyword", + "--causal_async_stacks", "--limit-ints-to-64-bits", }; static const char* kDartPrecompilationArgs[] = { -- GitLab