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

Unified Diff: test/class_hierarchy_basic.dart

Issue 2464843002: Fix some strong mode issues. (Closed)
Patch Set: Revert .analysis_options as there are still strong-mode issues Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/type_algebra.dart ('k') | test/class_hierarchy_tester.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/class_hierarchy_basic.dart
diff --git a/test/class_hierarchy_basic.dart b/test/class_hierarchy_basic.dart
index 4747b918b3bc973948f792ade1f24fe4b48a2ca2..601bf044339c1f842a4b6cc2161f5a7d1c2e3aee 100644
--- a/test/class_hierarchy_basic.dart
+++ b/test/class_hierarchy_basic.dart
@@ -4,13 +4,12 @@
library kernel.class_hierarchy_basic;
-import 'package:kernel/class_hierarchy.dart';
import 'package:kernel/type_algebra.dart';
import 'package:kernel/ast.dart';
/// A simple implementation of the class hierarchy interface using
/// hash tables for everything.
-class BasicClassHierarchy implements ClassHierarchy {
+class BasicClassHierarchy {
final Map<Class, Set<Class>> superclasses = <Class, Set<Class>>{};
final Map<Class, Set<Class>> superMixtures = <Class, Set<Class>>{};
final Map<Class, Set<Class>> supertypes = <Class, Set<Class>>{};
« no previous file with comments | « lib/type_algebra.dart ('k') | test/class_hierarchy_tester.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698