OLD | NEW |
(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 } |
OLD | NEW |