| Index: tests/language/named_parameters_with_dollars_test.dart
|
| ===================================================================
|
| --- tests/language/named_parameters_with_dollars_test.dart (revision 12414)
|
| +++ tests/language/named_parameters_with_dollars_test.dart (working copy)
|
| @@ -10,11 +10,11 @@
|
| }
|
|
|
| class TestClass {
|
| - method([a, b, a$b, a$$b]) => [a, b, a$b, a$$b];
|
| + method({a, b, a$b, a$$b}) => [a, b, a$b, a$$b];
|
|
|
| - psycho([$, $$, $$$, $$$$]) => [$, $$, $$$, $$$$];
|
| + psycho({$, $$, $$$, $$$$}) => [$, $$, $$$, $$$$];
|
| }
|
| -globalMethod([a, b, a$b, a$$b]) => [a, b, a$b, a$$b];
|
| +globalMethod({a, b, a$b, a$$b}) => [a, b, a$b, a$$b];
|
|
|
|
|
| format(thing) {
|
|
|