| Index: tests/lib_strong/mirrors/delegate_class_test.dart
|
| diff --git a/tests/lib_strong/mirrors/delegate_class_test.dart b/tests/lib_strong/mirrors/delegate_class_test.dart
|
| index 652ee4487bc154dc6c11be7715c6ca13478a98d6..d90e57cd02412f5bf15d95bdb74d49b0270b6c12 100644
|
| --- a/tests/lib_strong/mirrors/delegate_class_test.dart
|
| +++ b/tests/lib_strong/mirrors/delegate_class_test.dart
|
| @@ -10,13 +10,14 @@ import 'package:expect/expect.dart';
|
|
|
| class C {
|
| static method(a, b, c) => "$a-$b-$c";
|
| - static methodWithNamed(a, {b:'B', c}) => "$a-$b-$c";
|
| - static methodWithOpt(a, [b, c='C']) => "$a-$b-$c";
|
| + static methodWithNamed(a, {b: 'B', c}) => "$a-$b-$c";
|
| + static methodWithOpt(a, [b, c = 'C']) => "$a-$b-$c";
|
| static get getter => 'g';
|
| static set setter(x) {
|
| - field = x*2;
|
| + field = x * 2;
|
| return 'unobservable value';
|
| }
|
| +
|
| static var field;
|
| }
|
|
|
|
|