| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import 'package:expect/expect.dart'; | 5 import 'package:expect/expect.dart'; |
| 6 | 6 |
| 7 class Fisk { | 7 class Fisk { |
| 8 method({a: 'a', | 8 method( |
| 9 b: 'b', | 9 {a: 'a', |
| 10 c: 'c', | 10 b: 'b', |
| 11 d: 'd', | 11 c: 'c', |
| 12 e: 'e', | 12 d: 'd', |
| 13 f: 'f', | 13 e: 'e', |
| 14 g: 'g', | 14 f: 'f', |
| 15 h: 'h', | 15 g: 'g', |
| 16 i: 'i', | 16 h: 'h', |
| 17 j: 'j', | 17 i: 'i', |
| 18 k: 'k', | 18 j: 'j', |
| 19 l: 'l', | 19 k: 'k', |
| 20 m: 'm', | 20 l: 'l', |
| 21 n: 'n', | 21 m: 'm', |
| 22 o: 'o', | 22 n: 'n', |
| 23 p: 'p', | 23 o: 'o', |
| 24 q: 'q', | 24 p: 'p', |
| 25 r: 'r', | 25 q: 'q', |
| 26 s: 's', | 26 r: 'r', |
| 27 t: 't', | 27 s: 's', |
| 28 u: 'u', | 28 t: 't', |
| 29 v: 'v', | 29 u: 'u', |
| 30 w: 'w', | 30 v: 'v', |
| 31 x: 'x', | 31 w: 'w', |
| 32 y: 'y', | 32 x: 'x', |
| 33 z: 'z'}) { | 33 y: 'y', |
| 34 | 34 z: 'z'}) { |
| 35 return | 35 return 'a: $a, ' |
| 36 'a: $a, ' | |
| 37 'b: $b, ' | 36 'b: $b, ' |
| 38 'c: $c, ' | 37 'c: $c, ' |
| 39 'd: $d, ' | 38 'd: $d, ' |
| 40 'e: $e, ' | 39 'e: $e, ' |
| 41 'f: $f, ' | 40 'f: $f, ' |
| 42 'g: $g, ' | 41 'g: $g, ' |
| 43 'h: $h, ' | 42 'h: $h, ' |
| 44 'i: $i, ' | 43 'i: $i, ' |
| 45 'j: $j, ' | 44 'j: $j, ' |
| 46 'k: $k, ' | 45 'k: $k, ' |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 s: 's', | 91 s: 's', |
| 93 t: 't', | 92 t: 't', |
| 94 u: 'u', | 93 u: 'u', |
| 95 v: 'v', | 94 v: 'v', |
| 96 w: 'w', | 95 w: 'w', |
| 97 x: 'x', | 96 x: 'x', |
| 98 y: 'y', | 97 y: 'y', |
| 99 z: 'z')); | 98 z: 'z')); |
| 100 } | 99 } |
| 101 | 100 |
| 102 const String EXPECTED_RESULT = | 101 const String EXPECTED_RESULT = 'a: a, ' |
| 103 'a: a, ' | |
| 104 'b: b, ' | 102 'b: b, ' |
| 105 'c: c, ' | 103 'c: c, ' |
| 106 'd: d, ' | 104 'd: d, ' |
| 107 'e: e, ' | 105 'e: e, ' |
| 108 'f: f, ' | 106 'f: f, ' |
| 109 'g: g, ' | 107 'g: g, ' |
| 110 'h: h, ' | 108 'h: h, ' |
| 111 'i: i, ' | 109 'i: i, ' |
| 112 'j: j, ' | 110 'j: j, ' |
| 113 'k: k, ' | 111 'k: k, ' |
| 114 'l: l, ' | 112 'l: l, ' |
| 115 'm: m, ' | 113 'm: m, ' |
| 116 'n: n, ' | 114 'n: n, ' |
| 117 'o: o, ' | 115 'o: o, ' |
| 118 'p: p, ' | 116 'p: p, ' |
| 119 'q: q, ' | 117 'q: q, ' |
| 120 'r: r, ' | 118 'r: r, ' |
| 121 's: s, ' | 119 's: s, ' |
| 122 't: t, ' | 120 't: t, ' |
| 123 'u: u, ' | 121 'u: u, ' |
| 124 'v: v, ' | 122 'v: v, ' |
| 125 'w: w, ' | 123 'w: w, ' |
| 126 'x: x, ' | 124 'x: x, ' |
| 127 'y: y, ' | 125 'y: y, ' |
| 128 'z: z'; | 126 'z: z'; |
| OLD | NEW |