# File lib/sass/tree/node.rb, line 67 def options=(options) children.each {|c| c.options = options} if respond_to?(:subnodes) subnodes.each {|n| n.options = options if n.respond_to?(:options=)} end @options = options end