Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Side by Side Diff: tests/compiler/dart2js/type_equals_test.dart

Issue 2833073002: Stoppp using trippple consonants (Closed)
Patch Set: More spolling Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sdk/lib/js/dartium/js_dartium.dart ('k') | tests/compiler/dart2js/type_substitution_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 bool 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 var clazz = findElement(compiler, "Class");
13 clazz.ensureResolved(compiler.resolution); 13 clazz.ensureResolved(compiler.resolution);
14 var element1 = clazz.buildScope().lookup(name1); 14 var element1 = clazz.buildScope().lookup(name1);
15 var element2 = clazz.buildScope().lookup(name2); 15 var 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 occuring as 25 // Function signatures are used to be to provide void types (only occurring as
26 // as return types) and (inlined) function types (only occuring as method 26 // as return types) and (inlined) function types (only occurring as method
27 // parameter types). 27 // parameter types).
28 // 28 //
29 // Only a single type is used from each signature. That is, it is not the 29 // Only a single type is used from each signature. That is, it is not the
30 // intention to check the whole signatures against eachother. 30 // intention to check the whole signatures against eachother.
31 ResolutionDartType type1; 31 ResolutionDartType type1;
32 ResolutionDartType type2; 32 ResolutionDartType type2;
33 if (signature1.requiredParameterCount == 0) { 33 if (signature1.requiredParameterCount == 0) {
34 // If parameters is empty, use return type. 34 // If parameters is empty, use return type.
35 type1 = signature1.type.returnType; 35 type1 = signature1.type.returnType;
36 } else { 36 } else {
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « sdk/lib/js/dartium/js_dartium.dart ('k') | tests/compiler/dart2js/type_substitution_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698