Don't disable placeholder unification.

I'm not sure why I made this fail in the first place.
This commit is contained in:
Natalie Weizenbaum 2016-11-13 21:16:42 -08:00
parent f91c14c9e3
commit 2e0041d3c0

View File

@ -22,9 +22,6 @@ class PlaceholderSelector extends SimpleSelector {
PlaceholderSelector addSuffix(String suffix) =>
new PlaceholderSelector(name + suffix);
List<SimpleSelector> unify(List<SimpleSelector> compound) =>
throw new UnsupportedError("Placeholders don't support unification.");
bool operator ==(other) => other is PlaceholderSelector && other.name == name;
int get hashCode => name.hashCode;