Method: Sass::Tree::CommentNode#initialize
- Defined in:
- lib/sass/tree/comment_node.rb
#initialize(value, type) ⇒ CommentNode
Returns a new instance of CommentNode.
31 32 33 34 35 |
# File 'lib/sass/tree/comment_node.rb', line 31
def initialize(value, type)
@value = Sass::Util.with_extracted_values(value) {|str| normalize_indentation str}
@type = type
super()
end
|