haml--haml/lib/sass/tree/node.rb

100 lines
2.5 KiB
Ruby
Raw Normal View History

module Sass
module Tree
class Node
attr_accessor :children
attr_accessor :line
attr_accessor :filename
2008-07-20 03:27:17 +00: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-08 06:09:17 +00:00
2008-10-15 06:10:41 +00:00
# We need this because Node duck types as an Array in engine.rb
def last
children.last
end
def ==(other)
self.class == other.class && other.children == children
end
def to_s
result = String.new
children.each do |child|
if child.is_a? AttrNode
raise Sass::SyntaxError.new('Attributes aren\'t allowed at the root of a document.', child.line)
else
child_str = child.to_s(1)
next unless child_str && child_str.length > 0
result << child_str + (@style == :compressed ? '' : "\n")
end
end
@style == :compressed ? result+"\n" : result[0...-1]
end
def perform(environment)
_perform(environment)
rescue Sass::SyntaxError => e
e.sass_line ||= line
raise e
end
protected
def _perform(environment)
node = dup
node.perform!(environment)
node
end
def perform!(environment)
2008-10-16 03:00:28 +00:00
self.children = perform_children(Environment.new(environment))
end
def perform_children(environment)
children.map {|c| c.perform(environment)}.flatten
end
def interpolate(text, environment)
2009-01-09 22:54:17 +00:00
res = ''
rest = Haml::Shared.handle_interpolation text do |scan|
escapes = scan[2].size
2009-01-09 22:54:17 +00:00
res << scan.matched[0...-2 - escapes]
if escapes % 2 == 1
2009-01-09 22:54:17 +00:00
res << "\\" * (escapes - 1) << '#{'
else
2009-01-09 22:54:17 +00:00
res << "\\" * [0, escapes - 1].max
res << Script::Parser.new(scan, line, scan.pos - scan.matched_size, filename).
2009-01-09 22:54:17 +00:00
parse_interpolated.perform(environment).to_s
end
end
2009-01-09 22:54:17 +00:00
res + rest
end
2009-01-09 22:54:17 +00:00
def balance(*args)
res = Haml::Shared.balance(*args)
return res if res
raise Sass::SyntaxError.new("Unbalanced brackets.", line)
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