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

Side by Side Diff: packages/dart_style/test/regression/0100/0158.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 void foo() {
3 if(bar) {
4 if (baz) {
5 _sources[uri] = src = new _MockSdkSource(uri, 'library dart.${uri.path};') ;
6 }
7 }
8 }
9 <<<
10 void foo() {
11 if (bar) {
12 if (baz) {
13 _sources[uri] =
14 src = new _MockSdkSource(uri, 'library dart.${uri.path};');
15 }
16 }
17 }
18 >>>
19 class Foo {
20 static LibrarySummary parse(Map json) => new LibrarySummary(json[
21 'library_name'], json['messages'].map(MessageSummary.parse).toList(),
22 json['lines']);
23 }
24 <<<
25 class Foo {
26 static LibrarySummary parse(Map json) => new LibrarySummary(
27 json['library_name'],
28 json['messages'].map(MessageSummary.parse).toList(),
29 json['lines']);
30 }
31 >>>
32 class ResultSet {
33 factory ResultSet.fromJson(Map json) => new ResultSet(json['platform'], json[
34 'release'],
35 json['results'].map((result) => new Result.fromJson(result)).toList());
36 }
37 <<<
38 class ResultSet {
39 factory ResultSet.fromJson(Map json) => new ResultSet(
40 json['platform'],
41 json['release'],
42 json['results'].map((result) => new Result.fromJson(result)).toList());
43 }
OLDNEW
« no previous file with comments | « packages/dart_style/test/regression/0100/0156.unit ('k') | packages/dart_style/test/regression/0100/0161.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698