compass/doc-src/lib/stylesheets/sass_extensions.rb
Chris Eppstein 4afca420c3 - Some helpers for the body attributes
- Move the blueprint reference content to the blueprint tutorial
- Made new blueprint reference content that is actually reference
  content.
- Some basic helpers for accessing a sass stylesheet and extracting info
  from it.
2010-01-21 11:54:47 -08:00

14 lines
393 B
Ruby

module Sass
module Tree
class VariableNode < Node
attr_accessor :name unless method_defined? :name
end
class MixinDefNode < Node
attr_accessor :name unless method_defined? :name
attr_accessor :args unless method_defined? :args
end
class ImportNode < Node
attr_accessor :imported_filename unless method_defined? :imported_filename
end
end
end