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

Unified Diff: benchmark/after.dart.txt

Issue 1257903002: Optimize splitting long, complex lines. (Closed) Base URL: https://github.com/dart-lang/dart_style.git@master
Patch Set: Created 5 years, 5 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 | « no previous file | lib/src/debug.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: benchmark/after.dart.txt
diff --git a/benchmark/after.dart.txt b/benchmark/after.dart.txt
index 06afc6764ec06d4a72ffe013a28195f96d26d352..f72bd3dd025d8cdb1c00e0b4c909f96d360ef7ac 100644
--- a/benchmark/after.dart.txt
+++ b/benchmark/after.dart.txt
@@ -645,8 +645,8 @@ class Traverser {
// Make sure all of the existing sources match the new reference.
if (required.dep.source != dep.source) {
- _solver.logSolve(
- 'source mismatch on ${dep.name}: ${required.dep.source} ' '!= ${dep.source}');
+ _solver.logSolve('source mismatch on ${dep.name}: ${required.dep.source} '
+ '!= ${dep.source}');
throw new SourceMismatchException(dep.name, [required, dependency]);
}
@@ -813,5 +813,6 @@ void _validateSdkConstraint(Pubspec pubspec) {
throw new BadSdkVersionException(
pubspec.name,
'Package ${pubspec.name} requires SDK version '
- '${pubspec.environment.sdkVersion} but the current SDK is ' '${sdk.version}.');
+ '${pubspec.environment.sdkVersion} but the current SDK is '
+ '${sdk.version}.');
}
« no previous file with comments | « no previous file | lib/src/debug.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698