mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
20 lines
493 B
Ruby
20 lines
493 B
Ruby
require 'sass/tree/node'
|
|
|
|
module Sass::Tree
|
|
class CommentNode < ValueNode
|
|
def initialize(value, style)
|
|
super(value[2..-1].strip, style)
|
|
end
|
|
|
|
def to_s(tabs = 0, parent_name = nil)
|
|
return if @style == :compressed
|
|
|
|
spaces = ' ' * (tabs - 1)
|
|
join_string = @style == :compact ? ' ' : "\n#{spaces} * "
|
|
str = "#{spaces}/* #{value}"
|
|
str << join_string unless children.empty?
|
|
str << "#{children.join join_string} */"
|
|
str
|
|
end
|
|
end
|
|
end
|