Chromium Code Reviews| Index: sdk/bin/dartanalyzer |
| diff --git a/sdk/bin/dartanalyzer b/sdk/bin/dartanalyzer |
| index 34ce8956351dc13b33d3d7d2b993c9f5af75302c..bad9306fdd1e26422fa34fd8fdb2c10ed4f43c95 100755 |
| --- a/sdk/bin/dartanalyzer |
| +++ b/sdk/bin/dartanalyzer |
| @@ -45,4 +45,6 @@ DART_ROOT="$(cd "${SDK_DIR}/.." ; pwd -P)" |
| ANALYZER="$DART_ROOT/pkg/analyzer_cli/bin/analyzer.dart" |
| -exec "$DART" "--packages=$DART_ROOT/.packages" "${EXTRA_VM_OPTIONS[@]}" "$ANALYZER" "$SDK_ARG" "$@" |
| +DEV_OPTIONS="--use-analysis-driver-memory-byte-store" |
|
kevmoo
2017/02/15 00:03:11
This feels weird – why isn't this just the default
scheglov
2017/02/15 00:11:59
This script is used to run shared tests in cases w
|
| + |
| +exec "$DART" "--packages=$DART_ROOT/.packages" "${EXTRA_VM_OPTIONS[@]}" "$ANALYZER" "$DEV_OPTIONS" "$SDK_ARG" "$@" |