| Index: tests/compiler/dart2js/inference/data/super_get.dart
|
| diff --git a/tests/compiler/dart2js/inference/data/super_get.dart b/tests/compiler/dart2js/inference/data/super_get.dart
|
| index 7cc747010d9dd4c8e12ef687ab0461b7a3a12bfd..992888047dd4f9f8c2478510e1949c21d68f3755 100644
|
| --- a/tests/compiler/dart2js/inference/data/super_get.dart
|
| +++ b/tests/compiler/dart2js/inference/data/super_get.dart
|
| @@ -3,16 +3,16 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| class Super {
|
| - /*Super.field:[exact=JSUInt31]*/
|
| + /*element: Super.field:[exact=JSUInt31]*/
|
| var field = 42;
|
| }
|
|
|
| class Sub extends Super {
|
| - /*Sub.method:[exact=JSUInt31]*/
|
| + /*element: Sub.method:[exact=JSUInt31]*/
|
| method() => super.field;
|
| }
|
|
|
| -/*main:[null]*/
|
| +/*element: main:[null]*/
|
| main() {
|
| - new Sub(). /*[exact=Sub]*/ method();
|
| + new Sub(). /*invoke: [exact=Sub]*/ method();
|
| }
|
|
|