module Less::StyleSheet::Accessor1

Attribute accessors. Sass just flat-out doesn't support these, so we print a warning to that effect and compile them to comments.

Public Instance Methods

build(env) click to toggle source
# File lib/sass/less.rb, line 88
      def build(env)
        Sass::Util.sass_warn "WARNING: Sass doesn't support attribute accessors.
Ignoring #{text_value}
"
        Node::Anonymous.new("/* #{text_value} */")
      end