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/value_node.rb
nex3 a9e4883c68 Errors in Sassily imported documents are displayed with the proper filename.
git-svn-id: svn://hamptoncatlin.com/haml/trunk@447 7063305b-7217-0410-af8c-cdc13e5119b9
2007-03-25 04:57:03 +00:00

16 lines
232 B
Ruby

require 'sass/tree/node'
module Sass::Tree
class ValueNode < Node
attr_accessor :value
def initialize(value, style)
@value = value
super(style)
end
def to_s(tabs = 0)
value
end
end
end