Commit a4b29d64 authored by Ryan Macnak's avatar Ryan Macnak Committed by GitHub

Pass --enable_mirrors=false when building script snapshots for the debug mode. (#12472)

The initial loading happens on the host, which was building a script snapshot and allowing imports of dart:mirrors. Hot reload happens on the device, which then notices the imports and issues a compile-time error. This change causes programs with imports of dart:mirrors to be rejected during the initial load.

Fixes https://github.com/flutter/flutter/issues/12440
parent c312b3d9
......@@ -167,6 +167,7 @@ class Snapshotter {
final List<String> args = <String>[
'--snapshot_kind=script',
'--script_snapshot=$snapshotPath',
'--enable-mirrors=false',
mainPath,
];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment