haml--haml/lib/sass/constant/bool.rb

14 lines
175 B
Ruby
Raw Normal View History

2008-08-09 04:17:58 +00:00
require 'sass/constant/literal'
module Sass::Constant
class Bool < Literal # :nodoc:
def to_s
@value.to_s
end
def to_bool
@value
end
end
end