| 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
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3c9f6e1dbe88cd98908e5007696797154af8cba7
|
| --- /dev/null
|
| +++ b/runtime/observatory/tests/service/evaluate_activation_in_method_class_other.dart
|
| @@ -0,0 +1,24 @@
|
| +// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
|
| +// for details. All rights reserved. Use of this source code is governed by a
|
| +// BSD-style license that can be found in the LICENSE file.
|
| +
|
| +import 'dart:developer';
|
| +
|
| +class Superclass {
|
| + var _instVar = 'Superclass';
|
| + var instVar = 'Superclass';
|
| + method() => 'Superclass';
|
| + static staticMethod() => 'Superclass';
|
| +}
|
| +
|
| +class Klass extends Superclass {
|
| + var _instVar = 'Klass';
|
| + var instVar = 'Klass';
|
| + method() => 'Klass';
|
| + static staticMethod() => 'Klass';
|
| +
|
| + test() {
|
| + var _local = 'Klass';
|
| + debugger();
|
| + }
|
| +}
|
|
|