| 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 "package:expect/expect.dart"; |
| 6 import "package:async_helper/async_helper.dart"; | 6 import "package:async_helper/async_helper.dart"; |
| 7 import 'package:compiler/src/elements/resolution_types.dart'; | 7 import 'package:compiler/src/elements/resolution_types.dart'; |
| 8 import "compiler_helper.dart"; | 8 import "compiler_helper.dart"; |
| 9 | 9 |
| 10 bool test(compiler, String name1, String name2, {bool expect}) { | 10 test(compiler, String name1, String name2, {bool expect}) { |
| 11 Expect.isTrue((expect != null), 'required parameter "expect" not given'); | 11 Expect.isTrue((expect != null), 'required parameter "expect" not given'); |
| 12 var clazz = findElement(compiler, "Class"); | 12 dynamic clazz = findElement(compiler, "Class"); |
| 13 clazz.ensureResolved(compiler.resolution); | 13 clazz.ensureResolved(compiler.resolution); |
| 14 var element1 = clazz.buildScope().lookup(name1); | 14 dynamic element1 = clazz.buildScope().lookup(name1); |
| 15 var element2 = clazz.buildScope().lookup(name2); | 15 dynamic element2 = clazz.buildScope().lookup(name2); |
| 16 Expect.isNotNull(element1); | 16 Expect.isNotNull(element1); |
| 17 Expect.isNotNull(element2); | 17 Expect.isNotNull(element2); |
| 18 Expect.equals(element1.kind, ElementKind.FUNCTION); | 18 Expect.equals(element1.kind, ElementKind.FUNCTION); |
| 19 Expect.equals(element2.kind, ElementKind.FUNCTION); | 19 Expect.equals(element2.kind, ElementKind.FUNCTION); |
| 20 element1.computeType(compiler.resolution); | 20 element1.computeType(compiler.resolution); |
| 21 element2.computeType(compiler.resolution); | 21 element2.computeType(compiler.resolution); |
| 22 FunctionSignature signature1 = element1.functionSignature; | 22 FunctionSignature signature1 = element1.functionSignature; |
| 23 FunctionSignature signature2 = element2.functionSignature; | 23 FunctionSignature signature2 = element2.functionSignature; |
| 24 | 24 |
| 25 // Function signatures are used to be to provide void types (only occurring as | 25 // Function signatures are used to be to provide void types (only occurring as |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 test(compiler, "ListInt1", "ListString1", expect: false); | 110 test(compiler, "ListInt1", "ListString1", expect: false); |
| 111 test(compiler, "ListString1", "MapIntString1", expect: false); | 111 test(compiler, "ListString1", "MapIntString1", expect: false); |
| 112 test(compiler, "MapIntString1", "TypeVar1", expect: false); | 112 test(compiler, "MapIntString1", "TypeVar1", expect: false); |
| 113 test(compiler, "TypeVar1", "Function1a", expect: false); | 113 test(compiler, "TypeVar1", "Function1a", expect: false); |
| 114 test(compiler, "Function1a", "Function1b", expect: false); | 114 test(compiler, "Function1a", "Function1b", expect: false); |
| 115 test(compiler, "Function1b", "Typedef1a", expect: false); | 115 test(compiler, "Function1b", "Typedef1a", expect: false); |
| 116 test(compiler, "Typedef1a", "Typedef1b", expect: false); | 116 test(compiler, "Typedef1a", "Typedef1b", expect: false); |
| 117 test(compiler, "Typedef1b", "Typedef1c", expect: false); | 117 test(compiler, "Typedef1b", "Typedef1c", expect: false); |
| 118 })); | 118 })); |
| 119 } | 119 } |
| OLD | NEW |