Sass::Selector::Simple
A pseudoclass selector whose argument is itself a selector (e.g. `:not(.foo)` or `:-moz-all(.foo, .bar)`).
The name of the pseudoclass.
@return [String]
The selector argument.
@return [Selector::Sequence]
@param [String] The name of the pseudoclass @param [Selector::Sequence] The selector argument
# File lib/sass/selector.rb, line 350 350: def initialize(name, selector) 351: @name = name 352: @selector = selector 353: end
@see Selector#to_a
# File lib/sass/selector.rb, line 356 356: def to_a 357: [":", @name, "("] + @selector.to_a + [")"] 358: end
Disabled; run with --debug to generate this.
[Validate]
Generated with the Darkfish Rdoc Generator 1.1.6.