1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00
haml--haml/lib/sass/tree/node.rb

44 lines
1 KiB
Ruby
Raw Normal View History

module Sass
module Tree
class Node
attr_accessor :children
attr_accessor :line
attr_accessor :filename
2008-07-19 23:27:17 -04:00
def initialize(options)
@options = options
@style = options[:style]
@children = []
end
def <<(child)
if msg = invalid_child?(child)
raise Sass::SyntaxError.new(msg, child.line)
end
@children << child
end
2008-04-07 23:09:17 -07:00
def to_s
result = String.new
children.each do |child|
if child.is_a? AttrNode
raise SyntaxError.new('Attributes aren\'t allowed at the root of a document.', child.line)
else
result << "#{child.to_s(1)}" + (@style == :compressed ? '' : "\n")
end
end
@style == :compressed ? result+"\n" : result[0...-1]
end
private
# This method should be overridden by subclasses to return an error message
# if the given child node is invalid,
# and false or nil otherwise.
def invalid_child?(child)
false
end
end
end
end