Chromium Code Reviews| 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..0b82dadfa0253f2bc67100da20d95c79abd86295 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 warning |
|
Cutch
2016/06/16 21:38:22
We always start our comments with a space after th
cbernaschina
2016/06/16 21:50:21
Done.
|
| + print(_local); |
| } |
| } |