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

Side by Side Diff: test/regression/0000/0005.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 | « lib/src/source_visitor.dart ('k') | test/regression/0000/0006.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 var overlapping = _directories.keys.where((directory) => 2 var overlapping = _directories.keys.where((directory) =>
3 path.isWithin(directory, rootDirectory) || 3 path.isWithin(directory, rootDirectory) ||
4 path.isWithin(rootDirectory, directory)).toList(); 4 path.isWithin(rootDirectory, directory)).toList();
5 <<< 5 <<<
6 var overlapping = _directories.keys 6 var overlapping = _directories.keys
7 .where((directory) => path.isWithin(directory, rootDirectory) || 7 .where((directory) =>
8 path.isWithin(directory, rootDirectory) ||
8 path.isWithin(rootDirectory, directory)) 9 path.isWithin(rootDirectory, directory))
9 .toList(); 10 .toList();
10 >>> 11 >>>
11 return isLoopback(server.address.host) == isLoopback(url.host) || 12 return isLoopback(server.address.host) == isLoopback(url.host) ||
12 server.address.host == url.host; 13 server.address.host == url.host;
13 <<< 14 <<<
14 return isLoopback(server.address.host) == isLoopback(url.host) || 15 return isLoopback(server.address.host) == isLoopback(url.host) ||
15 server.address.host == url.host; 16 server.address.host == url.host;
OLDNEW
« no previous file with comments | « lib/src/source_visitor.dart ('k') | test/regression/0000/0006.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698