Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(965)

Unified Diff: pkg/dev_compiler/lib/src/analyzer/context.dart

Issue 2994203002: Optimize DDC private library files. (Closed)
Patch Set: Address comments Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/dev_compiler/lib/src/analyzer/context.dart
diff --git a/pkg/dev_compiler/lib/src/analyzer/context.dart b/pkg/dev_compiler/lib/src/analyzer/context.dart
index e67c8e93afd75fd7f55047f1bd23791804785661..aa9d84bf7477735bb0352216eab5832d4c8ff38c 100644
--- a/pkg/dev_compiler/lib/src/analyzer/context.dart
+++ b/pkg/dev_compiler/lib/src/analyzer/context.dart
@@ -125,8 +125,7 @@ class AnalyzerOptions {
var pipe = summaryPath.indexOf("=");
if (pipe != -1) {
summaryPaths[i] = summaryPath.substring(0, pipe);
- customSummaryModules[summaryPaths[i]] =
- summaryPath.substring(pipe + 1);
+ customSummaryModules[summaryPaths[i]] = summaryPath.substring(pipe + 1);
}
}
}

Powered by Google App Engine
This is Rietveld 408576698