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

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
« no previous file with comments | « no previous file | runtime/observatory/tests/service/evaluate_activation_in_method_class_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 var topLevel = "OtherLibrary";
8
9 class Superclass {
10 var _instVar = 'Superclass';
11 var instVar = 'Superclass';
12 method() => 'Superclass';
13 static staticMethod() => 'Superclass';
14 }
15
16 class Klass extends Superclass {
17 var _instVar = 'Klass';
18 var instVar = 'Klass';
19 method() => 'Klass';
20 static staticMethod() => 'Klass';
21
22 test() {
23 var _local = 'Klass';
24 debugger();
25 }
26 }
OLDNEW
« no previous file with comments | « no previous file | runtime/observatory/tests/service/evaluate_activation_in_method_class_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698