CompoundSelector class final
A compound selector.
A compound selector is composed of SimpleSelectors. It matches an element that matches all of the component simple selectors.
Constructors
-
CompoundSelector(Iterable<
SimpleSelector> components, FileSpan span) - CompoundSelector.parse(String contents, {Object? url, bool allowParent = true})
-
Parses a compound selector from
contents
.factory
Properties
-
components
→ List<
SimpleSelector> -
The components of this selector.
final
- hasComplicatedSuperselectorSemantics → bool
-
Whether any simple selector in this contains a selector that requires
complex non-local reasoning to determine whether it's a super- or
sub-selector.
latefinal
- hashCode → int
-
The hash code for this object.
no setteroverride
- isBogus → bool
-
Whether this selector is not valid CSS.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- span → FileSpan
-
The source span associated with the node.
finalinherited
- specificity → int
-
This selector's specificity.
latefinal
Methods
-
accept<
T> (SelectorVisitor< T> visitor) → T -
Calls the appropriate visit method on
visitor
.override -
assertNotBogus(
{String? name}) → void -
Prints a warning if
this
is a bogus selector.inherited -
isSuperselector(
CompoundSelector other) → bool -
Whether this is a superselector of
other
. -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
override