Index: sdk/lib/_internal/compiler/implementation/dart_types.dart |
diff --git a/sdk/lib/_internal/compiler/implementation/dart_types.dart b/sdk/lib/_internal/compiler/implementation/dart_types.dart |
index f70517e5fac8e7d7aabe62e0e81b95e5e51f1024..9fcd6c36a7d89f4dbff97ddc2e7b69bb5fb0ac3b 100644 |
--- a/sdk/lib/_internal/compiler/implementation/dart_types.dart |
+++ b/sdk/lib/_internal/compiler/implementation/dart_types.dart |
@@ -71,16 +71,6 @@ abstract class DartType { |
DartType unalias(Compiler compiler); |
/** |
- * Finds the method, field or property named [name] declared or inherited |
- * on this type. |
- * |
- * If [isSetter] is [:true:] the member is interpreted as a setter access. |
- */ |
- // TODO(johnniwinther): Implement this for [TypeVariableType], [FunctionType], |
- // and [TypedefType]. |
- Member lookupMember(SourceString name, {bool isSetter: false}) => null; |
- |
- /** |
* If this type is malformed or a generic type created with the wrong number |
* of type arguments then [userProvidedBadType] holds the bad type provided |
* by the user. |