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

Side by Side Diff: pkg/kernel/test/class_hierarchy_test.dart

Issue 2921083002: Implement getClassicLeastUpperBound() in IncrementalClassHierarchy. (Closed)
Patch Set: Created 3 years, 6 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 | « pkg/kernel/lib/src/incremental_class_hierarchy.dart ('k') | no next file » | 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) 2017, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2017, 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:kernel/ast.dart'; 5 import 'package:kernel/ast.dart';
6 import 'package:kernel/class_hierarchy.dart'; 6 import 'package:kernel/class_hierarchy.dart';
7 import 'package:kernel/core_types.dart'; 7 import 'package:kernel/core_types.dart';
8 import 'package:kernel/src/incremental_class_hierarchy.dart'; 8 import 'package:kernel/src/incremental_class_hierarchy.dart';
9 import 'package:kernel/testing/mock_sdk_program.dart'; 9 import 'package:kernel/testing/mock_sdk_program.dart';
10 import 'package:kernel/text/ast_to_text.dart'; 10 import 'package:kernel/text/ast_to_text.dart';
(...skipping 30 matching lines...) Expand all
41 void test_forEachOverridePair_thisOverridesSupertype() { 41 void test_forEachOverridePair_thisOverridesSupertype() {
42 super.test_forEachOverridePair_thisOverridesSupertype(); 42 super.test_forEachOverridePair_thisOverridesSupertype();
43 } 43 }
44 44
45 @failingTest 45 @failingTest
46 void test_forEachOverridePair_thisOverridesSupertype_setter() { 46 void test_forEachOverridePair_thisOverridesSupertype_setter() {
47 super.test_forEachOverridePair_thisOverridesSupertype_setter(); 47 super.test_forEachOverridePair_thisOverridesSupertype_setter();
48 } 48 }
49 49
50 @failingTest 50 @failingTest
51 void test_getClassicLeastUpperBound_expansive() {
52 super.test_getClassicLeastUpperBound_expansive();
53 }
54
55 @failingTest
56 void test_getClassicLeastUpperBound_generic() {
57 super.test_getClassicLeastUpperBound_generic();
58 }
59
60 @failingTest
61 void test_getClassicLeastUpperBound_nonGeneric() {
62 super.test_getClassicLeastUpperBound_nonGeneric();
63 }
64
65 @failingTest
66 void test_getDispatchTarget() { 51 void test_getDispatchTarget() {
67 super.test_getDispatchTarget(); 52 super.test_getDispatchTarget();
68 } 53 }
69 54
70 @failingTest 55 @failingTest
71 void test_getDispatchTarget_abstract() { 56 void test_getDispatchTarget_abstract() {
72 super.test_getDispatchTarget_abstract(); 57 super.test_getDispatchTarget_abstract();
73 } 58 }
74 59
75 @failingTest 60 @failingTest
(...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after
931 actualText = actualText.replaceAll(' extends core::Object', ''); 916 actualText = actualText.replaceAll(' extends core::Object', '');
932 917
933 // if (actualText != expectedText) { 918 // if (actualText != expectedText) {
934 // print('-------- Actual --------'); 919 // print('-------- Actual --------');
935 // print(actualText + '------------------------'); 920 // print(actualText + '------------------------');
936 // } 921 // }
937 922
938 expect(actualText, expectedText); 923 expect(actualText, expectedText);
939 } 924 }
940 } 925 }
OLDNEW
« no previous file with comments | « pkg/kernel/lib/src/incremental_class_hierarchy.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698