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

Unified Diff: pkg/compiler/lib/src/platform_configuration.dart

Issue 1859343004: dartfmt pkg/compiler (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « pkg/compiler/lib/src/patch_parser.dart ('k') | pkg/compiler/lib/src/resolution/access_semantics.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/platform_configuration.dart
diff --git a/pkg/compiler/lib/src/platform_configuration.dart b/pkg/compiler/lib/src/platform_configuration.dart
index 41da852868bfe3579e598475422b914864dad118..56a48dfb39bc4ab65a1843807cf7a38338f17d6f 100644
--- a/pkg/compiler/lib/src/platform_configuration.dart
+++ b/pkg/compiler/lib/src/platform_configuration.dart
@@ -75,8 +75,9 @@ Map<String, Map<String, String>> parseIni(List<int> source,
error("Section heading lines must end with ']'", endOfHeader + 1);
}
int startOfSectionName = startOfLine + 1;
- String sectionName = new String.fromCharCodes(
- source, startOfSectionName, endOfHeader).trim();
+ String sectionName =
+ new String.fromCharCodes(source, startOfSectionName, endOfHeader)
+ .trim();
currentSection = new Map<String, String>();
if (result.containsKey(sectionName)) {
error("Duplicate section name '$sectionName'", startOfSectionName);
« no previous file with comments | « pkg/compiler/lib/src/patch_parser.dart ('k') | pkg/compiler/lib/src/resolution/access_semantics.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698