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

Unified Diff: pkg/compiler/lib/src/universe/universe.dart

Issue 1293953006: Refactor qualified send sets. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: pkg/compiler/lib/src/universe/universe.dart
diff --git a/pkg/compiler/lib/src/universe/universe.dart b/pkg/compiler/lib/src/universe/universe.dart
index 2dfb3e86a724b3b63953d00d86d6c1b2b8497ed6..0574af8abc2b9d3e9c12d2fd8fe517e2934b6cad 100644
--- a/pkg/compiler/lib/src/universe/universe.dart
+++ b/pkg/compiler/lib/src/universe/universe.dart
@@ -766,11 +766,6 @@ class Selector {
name.getter,
CallStructure.NO_ARGS);
- factory Selector.getterFrom(Selector selector)
- => new Selector(SelectorKind.GETTER,
- selector.memberName.getter,
- CallStructure.NO_ARGS);
-
factory Selector.setter(Name name)
=> new Selector(SelectorKind.SETTER,
name.setter,

Powered by Google App Engine
This is Rietveld 408576698