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 "package:expect/expect.dart"; |
5 import "dart:uri"; | 6 import "dart:uri"; |
6 import "../../../sdk/lib/_internal/compiler/implementation/elements/elements.dar
t"; | 7 import "../../../sdk/lib/_internal/compiler/implementation/elements/elements.dar
t"; |
7 import '../../../sdk/lib/_internal/compiler/implementation/scanner/scannerlib.da
rt'; | 8 import '../../../sdk/lib/_internal/compiler/implementation/scanner/scannerlib.da
rt'; |
8 import '../../../sdk/lib/_internal/compiler/implementation/source_file.dart'; | 9 import '../../../sdk/lib/_internal/compiler/implementation/source_file.dart'; |
9 import '../../../sdk/lib/_internal/compiler/implementation/types/types.dart'; | 10 import '../../../sdk/lib/_internal/compiler/implementation/types/types.dart'; |
10 import '../../../sdk/lib/_internal/compiler/implementation/tree/tree.dart'; | 11 import '../../../sdk/lib/_internal/compiler/implementation/tree/tree.dart'; |
11 import "../../../sdk/lib/_internal/compiler/implementation/dart2jslib.dart" as l
eg; | 12 import "../../../sdk/lib/_internal/compiler/implementation/dart2jslib.dart" as l
eg; |
12 | 13 |
13 import "parser_helper.dart"; | 14 import "parser_helper.dart"; |
14 import "compiler_helper.dart"; | 15 import "compiler_helper.dart"; |
(...skipping 1054 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1069 // testFieldInitialization(); // TODO(polux) | 1070 // testFieldInitialization(); // TODO(polux) |
1070 testSendWithWrongArity(); | 1071 testSendWithWrongArity(); |
1071 testBigTypesWidening1(); | 1072 testBigTypesWidening1(); |
1072 testBigTypesWidening2(); | 1073 testBigTypesWidening2(); |
1073 testDynamicIsAbsorbing(); | 1074 testDynamicIsAbsorbing(); |
1074 testLists(); | 1075 testLists(); |
1075 testListWithCapacity(); | 1076 testListWithCapacity(); |
1076 testEmptyList(); | 1077 testEmptyList(); |
1077 testIsCheck(); | 1078 testIsCheck(); |
1078 } | 1079 } |
OLD | NEW |