Sha256: 4b1366673c1391c228f6391d5ab1b1fa5cbf3269a4e5600cd1e1951d9743fecb
Contents?: true
Size: 460 Bytes
Versions: 96
Compression:
Stored size: 460 Bytes
Contents
module Sass::Script::Tree # A SassScript node that will resolve to the current selector. class Selector < Node def initialize; end def children [] end def to_sass(opts = {}) '&' end def deep_copy dup end protected def _perform(environment) selector = environment.selector return opts(Sass::Script::Value::Null.new) unless selector opts(selector.to_sass_script) end end end
Version data entries
96 entries across 93 versions & 9 rubygems