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 ca099cf7ea 100% rcov! Yay! (Except action_view_mods, of course)
git-svn-id: svn://hamptoncatlin.com/haml/branches/1.5dev@197 7063305b-7217-0410-af8c-cdc13e5119b9
2006-12-04 08:43:54 +00:00

13 lines
223 B
Ruby

require File.dirname(__FILE__) + '/../../sass'
require 'sass/tree/node'
module Sass::Tree
class ValueNode < Node
attr_accessor :value
def initialize(value)
@value = value
super()
end
end
end