| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // Test file for testing source mappings of invocations. | 5 // Test file for testing source mappings of invocations. |
| 6 | 6 |
| 7 var counter = 0; | 7 var counter = 0; |
| 8 var bucket; | |
| 9 | 8 |
| 10 main(args) { | 9 main(args) { |
| 11 counter++; | 10 counter++; |
| 12 invokes(args); | 11 invokes(args); |
| 13 return counter; | 12 return counter; |
| 14 } | 13 } |
| 15 | 14 |
| 16 invokes(parameter) { | 15 invokes(parameter) { |
| 17 counter++; | 16 counter++; |
| 18 toplevelFunction(); | 17 toplevelFunction(); |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 super.superMethod(); | 118 super.superMethod(); |
| 120 super.superField(); | 119 super.superField(); |
| 121 super.superGetter(); | 120 super.superGetter(); |
| 122 | 121 |
| 123 C(); | 122 C(); |
| 124 dynamic(); | 123 dynamic(); |
| 125 F(); | 124 F(); |
| 126 T(); | 125 T(); |
| 127 } | 126 } |
| 128 } | 127 } |
| OLD | NEW |