| Index: pkg/analyzer_cli/lib/src/build_mode.dart
|
| diff --git a/pkg/analyzer_cli/lib/src/build_mode.dart b/pkg/analyzer_cli/lib/src/build_mode.dart
|
| index 8249e77d667490df047656a798642896f1ce6969..d74da8c0cabeb9b5d10277dab8271d723828c6b3 100644
|
| --- a/pkg/analyzer_cli/lib/src/build_mode.dart
|
| +++ b/pkg/analyzer_cli/lib/src/build_mode.dart
|
| @@ -188,17 +188,12 @@ class BuildMode {
|
| }
|
|
|
| // Write summary.
|
| - assembler = new PackageBundleAssembler(
|
| - excludeHashes: options.buildSummaryExcludeInformative &&
|
| - options.buildSummaryOutputSemantic == null);
|
| + assembler = new PackageBundleAssembler();
|
| if (_shouldOutputSummary) {
|
| _serializeAstBasedSummary(explicitSources);
|
| // Write the whole package bundle.
|
| assembler.recordDependencies(summaryDataStore);
|
| PackageBundleBuilder bundle = assembler.assemble();
|
| - if (options.buildSummaryExcludeInformative) {
|
| - bundle.flushInformative();
|
| - }
|
| if (options.buildSummaryOutput != null) {
|
| io.File file = new io.File(options.buildSummaryOutput);
|
| file.writeAsBytesSync(bundle.toBuffer(), mode: io.FileMode.WRITE_ONLY);
|
|
|