| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 import 'dart:async'; | 5 import 'dart:async'; |
| 6 import 'dart:collection'; | 6 import 'dart:collection'; |
| 7 | 7 |
| 8 import 'package:unittest/unittest.dart'; | 8 import 'package:unittest/unittest.dart'; |
| 9 | 9 |
| 10 import 'test_common.dart'; | |
| 11 import 'test_utils.dart'; | 10 import 'test_utils.dart'; |
| 12 | 11 |
| 13 void main() { | 12 void main() { |
| 14 | 13 |
| 15 initUtils(); | 14 initUtils(); |
| 16 | 15 |
| 17 // Core matchers | 16 // Core matchers |
| 18 | 17 |
| 19 group('Core matchers', () { | 18 group('Core matchers', () { |
| 20 | 19 |
| (...skipping 736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 757 | 756 |
| 758 X() { | 757 X() { |
| 759 print(foo); | 758 print(foo); |
| 760 } | 759 } |
| 761 } | 760 } |
| 762 | 761 |
| 763 abstract class Abstraction { | 762 abstract class Abstraction { |
| 764 void norealization(); | 763 void norealization(); |
| 765 } | 764 } |
| 766 | 765 |
| OLD | NEW |