| OLD | NEW |
| (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 } |
| OLD | NEW |