| Index: runtime/observatory/tests/service/evaluate_activation_in_method_class_test.dart
|
| diff --git a/runtime/observatory/tests/service/evaluate_activation_in_method_class_test.dart b/runtime/observatory/tests/service/evaluate_activation_in_method_class_test.dart
|
| index cfe43154d620438a0b9da841b6d32684b1ac022a..d07b8329e975607e0dd0ef7226d1bda29b62e3ac 100644
|
| --- a/runtime/observatory/tests/service/evaluate_activation_in_method_class_test.dart
|
| +++ b/runtime/observatory/tests/service/evaluate_activation_in_method_class_test.dart
|
| @@ -20,6 +20,7 @@ class Subclass extends Superclass with Klass {
|
| var instVar = 'Subclass';
|
| method() => 'Subclass';
|
| static staticMethod() => 'Subclass';
|
| + suppress_warning() => _instVar;
|
| }
|
|
|
| testeeDo() {
|
| @@ -70,7 +71,7 @@ testerDo(Isolate isolate) async {
|
| result = await isolate.evalFrame(topFrame, 'staticMethod()');
|
| print(result);
|
| expect(result.valueAsString, equals('Klass'));
|
| -
|
| +
|
| // function.Owner verus function.Origin
|
| // The mixin of Superclass is in _other.dart and the mixin
|
| // application is in _test.dart.
|
|
|