OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 that resolution does not resolve things we know will not be | 5 // Test that resolution does not resolve things we know will not be |
6 // needed by the backend. | 6 // needed by the backend. |
7 | 7 |
8 import 'package:expect/expect.dart'; | 8 import 'package:expect/expect.dart'; |
| 9 import "package:async_helper/async_helper.dart"; |
9 import 'compiler_helper.dart'; | 10 import 'compiler_helper.dart'; |
10 import 'parser_helper.dart'; | 11 import 'parser_helper.dart'; |
11 | 12 |
12 const String NO_RUNTIME_TYPE = r""" | 13 const String NO_RUNTIME_TYPE = r""" |
13 import 'dart:core' as prefix; | 14 import 'dart:core' as prefix; |
14 class A { | 15 class A { |
15 A(); | 16 A(); |
16 A.z(); | 17 A.z(); |
17 static var bar; | 18 static var bar; |
18 static foo() {} | 19 static foo() {} |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 static var foo; | 88 static var foo; |
88 } | 89 } |
89 main() { | 90 main() { |
90 (A).foo; | 91 (A).foo; |
91 } | 92 } |
92 """; | 93 """; |
93 | 94 |
94 void test(String code, void check(Compiler compiler)) { | 95 void test(String code, void check(Compiler compiler)) { |
95 Uri uri = new Uri(scheme: 'source'); | 96 Uri uri = new Uri(scheme: 'source'); |
96 var compiler = compilerFor(code, uri); | 97 var compiler = compilerFor(code, uri); |
97 compiler.runCompiler(uri); | 98 asyncTest(() => compiler.runCompiler(uri).then((_) { |
98 check(compiler); | 99 check(compiler); |
| 100 })); |
99 } | 101 } |
100 | 102 |
101 void testHasRuntimeType(String code) { | 103 void testHasRuntimeType(String code) { |
102 test(code, (compiler) { | 104 test(code, (compiler) { |
103 var element = compiler.findHelper(buildSourceString('createRuntimeType')); | 105 var element = compiler.findHelper(buildSourceString('createRuntimeType')); |
104 Expect.isTrue(compiler.enqueuer.resolution.isProcessed(element)); | 106 Expect.isTrue(compiler.enqueuer.resolution.isProcessed(element)); |
105 }); | 107 }); |
106 } | 108 } |
107 | 109 |
108 main() { | 110 main() { |
109 test(NO_RUNTIME_TYPE, (compiler) { | 111 test(NO_RUNTIME_TYPE, (compiler) { |
110 var element = compiler.findHelper(buildSourceString('createRuntimeType')); | 112 var element = compiler.findHelper(buildSourceString('createRuntimeType')); |
111 Expect.isFalse(compiler.enqueuer.resolution.isProcessed(element)); | 113 Expect.isFalse(compiler.enqueuer.resolution.isProcessed(element)); |
112 }); | 114 }); |
113 | 115 |
114 testHasRuntimeType(HAS_RUNTIME_TYPE_1); | 116 testHasRuntimeType(HAS_RUNTIME_TYPE_1); |
115 testHasRuntimeType(HAS_RUNTIME_TYPE_2); | 117 testHasRuntimeType(HAS_RUNTIME_TYPE_2); |
116 testHasRuntimeType(HAS_RUNTIME_TYPE_3); | 118 testHasRuntimeType(HAS_RUNTIME_TYPE_3); |
117 testHasRuntimeType(HAS_RUNTIME_TYPE_4); | 119 testHasRuntimeType(HAS_RUNTIME_TYPE_4); |
118 testHasRuntimeType(HAS_RUNTIME_TYPE_5); | 120 testHasRuntimeType(HAS_RUNTIME_TYPE_5); |
119 testHasRuntimeType(HAS_RUNTIME_TYPE_6); | 121 testHasRuntimeType(HAS_RUNTIME_TYPE_6); |
120 } | 122 } |
OLD | NEW |