| Index: tests/language/class_test.dart
|
| diff --git a/tests/language/class_test.dart b/tests/language/class_test.dart
|
| index 7a03fb1a4e39aaec617b642e12bb868a0e6065fb..0436393f6359edfcc4a0b37a38d86c6810435abc 100644
|
| --- a/tests/language/class_test.dart
|
| +++ b/tests/language/class_test.dart
|
| @@ -18,7 +18,9 @@ class ClassTest {
|
| test.testFactory();
|
| test.testNamedConstructors();
|
| test.testDefaultImplementation();
|
| - test.testFunctionParameter((int a) { return a;});
|
| + test.testFunctionParameter((int a) {
|
| + return a;
|
| + });
|
| }
|
|
|
| testFunctionParameter(int func(int a)) {
|
| @@ -44,7 +46,7 @@ class ClassTest {
|
| }
|
|
|
| testInheritedField() {
|
| - var sub = new Sub();
|
| + var sub = new Sub();
|
| Expect.equals(42, sub.method6());
|
| }
|
|
|
| @@ -158,7 +160,10 @@ class Sub extends Sup {
|
| }
|
|
|
| int closureRef() {
|
| - var f = () {y_ += 1; return y_;};
|
| + var f = () {
|
| + y_ += 1;
|
| + return y_;
|
| + };
|
| return f();
|
| }
|
|
|
|
|