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

10 lines
137 B
Ruby

require 'sass/constant/literal'
module Sass::Constant # :nodoc:
class Nil < Literal # :nodoc:
def to_s
''
end
end
end