Chromium Code Reviews| Index: tests/compiler/dart2js/inference/data/super_set.dart |
| diff --git a/tests/compiler/dart2js/inference/data/super_set.dart b/tests/compiler/dart2js/inference/data/super_set.dart |
| index 937a147bbc926f9e18105e133c7ab898e8214300..eb77cbc2e3807ed719a67f1998b10a9baa4024b8 100644 |
| --- a/tests/compiler/dart2js/inference/data/super_set.dart |
| +++ b/tests/compiler/dart2js/inference/data/super_set.dart |
| @@ -10,12 +10,13 @@ class Super { |
| class Sub extends Super { |
| /*Sub.method:[subclass=Closure]*/ |
| method() { |
| + // ignore: INVALID_ASSIGNMENT |
| var a = super.field = new Sub(); |
| - return a./*[exact=Sub]*/method; |
| + return a. /*[exact=Sub]*/ method; |
|
Johnni Winther
2017/06/16 08:36:00
The added space breaks the inference tests.
ahe
2017/06/16 08:50:23
OK. That's on dartfmt. I'll discuss this in person
|
| } |
| } |
| /*main:[null]*/ |
| main() { |
| - new Sub()./*[exact=Sub]*/method(); |
| + new Sub(). /*[exact=Sub]*/ method(); |
| } |