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 "package:expect/expect.dart"; | 6 import "package:expect/expect.dart"; |
7 import "package:async_helper/async_helper.dart"; | 7 import "package:async_helper/async_helper.dart"; |
8 import '../../../sdk/lib/_internal/compiler/implementation/source_file.dart'; | 8 import 'package:compiler/implementation/source_file.dart'; |
9 import '../../../sdk/lib/_internal/compiler/implementation/types/types.dart'; | 9 import 'package:compiler/implementation/types/types.dart'; |
10 import '../../../sdk/lib/_internal/compiler/implementation/inferrer/concrete_typ
es_inferrer.dart'; | 10 import 'package:compiler/implementation/inferrer/concrete_types_inferrer.dart'; |
11 | 11 |
12 import "parser_helper.dart"; | 12 import "parser_helper.dart"; |
13 import "compiler_helper.dart"; | 13 import "compiler_helper.dart"; |
14 import "type_mask_test_helper.dart"; | 14 import "type_mask_test_helper.dart"; |
15 import 'dart:mirrors'; | 15 import 'dart:mirrors'; |
16 | 16 |
17 /** | 17 /** |
18 * Finds the node corresponding to the last occurence of the substring | 18 * Finds the node corresponding to the last occurence of the substring |
19 * [: identifier; :] in the program represented by the visited AST. | 19 * [: identifier; :] in the program represented by the visited AST. |
20 */ | 20 */ |
(...skipping 2112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2133 testClosures10, | 2133 testClosures10, |
2134 testClosures11, | 2134 testClosures11, |
2135 testClosures12, | 2135 testClosures12, |
2136 testRefinement, | 2136 testRefinement, |
2137 testDefaultArguments, | 2137 testDefaultArguments, |
2138 testSuperConstructorCall, | 2138 testSuperConstructorCall, |
2139 testSuperConstructorCall2, | 2139 testSuperConstructorCall2, |
2140 testSuperConstructorCall3, | 2140 testSuperConstructorCall3, |
2141 ], (f) => f())); | 2141 ], (f) => f())); |
2142 } | 2142 } |
OLD | NEW |