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

Side by Side Diff: test/regression/0000/0006.stmt

Issue 1504553002: Better handling for binary operators in => bodies. (Closed) Base URL: https://github.com/dart-lang/dart_style.git@master
Patch Set: Created 5 years 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 unified diff | Download patch
« no previous file with comments | « test/regression/0000/0005.stmt ('k') | test/regression/0000/0026.stmt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 >>> 1 >>>
2 return _provideDirectorySources(graph.packages[package], "bin").then((_) => Barb ackServer.bind( 2 return _provideDirectorySources(graph.packages[package], "bin").then((_) => Barb ackServer.bind(
3 this, _hostname, 0, package: package, rootDirectory: "bin")); 3 this, _hostname, 0, package: package, rootDirectory: "bin"));
4 <<< 4 <<<
5 return _provideDirectorySources(graph.packages[package], "bin").then((_) => 5 return _provideDirectorySources(graph.packages[package], "bin").then((_) =>
6 BarbackServer.bind(this, _hostname, 0, 6 BarbackServer.bind(this, _hostname, 0,
7 package: package, rootDirectory: "bin")); 7 package: package, rootDirectory: "bin"));
8 >>> 8 >>>
9 messageMentionsAsset(id) => 9 messageMentionsAsset(id) =>
10 messageMentions(id.toString()) || 10 messageMentions(id.toString()) ||
11 messageMentions(path.fromUri(entry.assetId.path)); 11 messageMentions(path.fromUri(entry.assetId.path));
12 <<< 12 <<<
13 messageMentionsAsset(id) => messageMentions(id.toString()) || 13 messageMentionsAsset(id) =>
14 messageMentions(id.toString()) ||
14 messageMentions(path.fromUri(entry.assetId.path)); 15 messageMentions(path.fromUri(entry.assetId.path));
OLDNEW
« no previous file with comments | « test/regression/0000/0005.stmt ('k') | test/regression/0000/0026.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698