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

Side by Side Diff: packages/dart_style/test/regression/0100/0144.unit

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. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 >>>
2 class Selector {
3 factory Selector.call(String name,
4 LibraryElement library,
5 int arity,
6 [List<String> namedArguments])
7 => new Selector(SelectorKind.CALL, name, library, arity, namedArguments);
8 }
9 <<<
10 class Selector {
11 factory Selector.call(String name, LibraryElement library, int arity,
12 [List<String> namedArguments]) =>
13 new Selector(SelectorKind.CALL, name, library, arity, namedArguments);
14 }
15 >>> a knock-on issue caused by the initial fix for the above
16 class Foo {
17 get getter => "result";
18
19 // Comment.
20 }
21 <<<
22 class Foo {
23 get getter => "result";
24
25 // Comment.
26 }
OLDNEW
« no previous file with comments | « packages/dart_style/test/regression/0100/0142.stmt ('k') | packages/dart_style/test/regression/0100/0146.unit » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698