Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: runtime/observatory/tests/service/evaluate_activation_in_method_class_other.dart

Issue 1854243002: VM: Evaluate-in-frame should happen in the scope of the method class, not the receiver class. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 import 'dart:developer';
6
7 class Superclass {
8 var _instVar = 'Superclass';
9 var instVar = 'Superclass';
10 method() => 'Superclass';
11 static staticMethod() => 'Superclass';
12 }
13
14 class Klass extends Superclass {
15 var _instVar = 'Klass';
16 var instVar = 'Klass';
17 method() => 'Klass';
18 static staticMethod() => 'Klass';
19
20 test() {
21 var _local = 'Klass';
22 debugger();
23 }
24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698