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