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

18 lines
201 B
Ruby

require 'sass/constant/literal'
module Sass::Constant
class Nil < Literal # :nodoc:
def to_s
''
end
def to_arglist
[]
end
def to_bool
false
end
end
end