Chromium Code Reviews

Side by Side Diff: packages/dart_style/test/regression/0000/0005.stmt

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
(Empty)
1 >>>
2 var overlapping = _directories.keys.where((directory) =>
3 path.isWithin(directory, rootDirectory) ||
4 path.isWithin(rootDirectory, directory)).toList();
5 <<<
6 var overlapping = _directories.keys
7 .where((directory) => path.isWithin(directory, rootDirectory) ||
8 path.isWithin(rootDirectory, directory))
9 .toList();
10 >>>
11 return isLoopback(server.address.host) == isLoopback(url.host) ||
12 server.address.host == url.host;
13 <<<
14 return isLoopback(server.address.host) == isLoopback(url.host) ||
15 server.address.host == url.host;
OLDNEW
« no previous file with comments | « packages/dart_style/test/regression/0000/0000.stmt ('k') | packages/dart_style/test/regression/0000/0006.stmt » ('j') | no next file with comments »

Powered by Google App Engine