| Index: runtime/observatory/tests/service/evaluate_activation_in_method_class_other.dart
|
| diff --git a/runtime/observatory/tests/service/evaluate_activation_in_method_class_other.dart b/runtime/observatory/tests/service/evaluate_activation_in_method_class_other.dart
|
| index 6cc5879e94d16eeee8f71dfcb817cac88faf7170..bf070a160afbd98dced8118d3de8da128766fa4f 100644
|
| --- a/runtime/observatory/tests/service/evaluate_activation_in_method_class_other.dart
|
| +++ b/runtime/observatory/tests/service/evaluate_activation_in_method_class_other.dart
|
| @@ -11,6 +11,7 @@ class Superclass {
|
| var instVar = 'Superclass';
|
| method() => 'Superclass';
|
| static staticMethod() => 'Superclass';
|
| + suppress_warning() => _instVar;
|
| }
|
|
|
| class Klass extends Superclass {
|
| @@ -22,5 +23,7 @@ class Klass extends Superclass {
|
| test() {
|
| var _local = 'Klass';
|
| debugger();
|
| + // Suppress unused variable warning.
|
| + print(_local);
|
| }
|
| }
|
|
|