Index: pkg/compiler/lib/src/universe/function_set.dart |
diff --git a/pkg/compiler/lib/src/universe/function_set.dart b/pkg/compiler/lib/src/universe/function_set.dart |
index 677ffc53d6d967e3cf92f8e872b39f91ca27cfa7..ac25450a6b9688515cbfe0994f1c727bd279b3f9 100644 |
--- a/pkg/compiler/lib/src/universe/function_set.dart |
+++ b/pkg/compiler/lib/src/universe/function_set.dart |
@@ -51,10 +51,8 @@ class FunctionSet { |
return (node != null) ? node.contains(element) : false; |
} |
- /// Returns all the functions that may be invoked with the [selector] on a |
- /// receiver with the given [constraint]. The returned elements may include |
- /// noSuchMethod handlers that are potential targets indirectly through the |
- /// noSuchMethod mechanism. |
+ /// Returns an object that allows iterating over all the functions |
+ /// that may be invoked with the given [selector]. |
Iterable<Element> filter(Selector selector, ReceiverConstraint constraint) { |
return query(selector, constraint).functions; |
} |