module Sass::Script

def self.equals_warning(types, name, val, guarded, line, offset, filename)

Other tags:
    Private: -
def self.equals_warning(types, name, val, guarded, line, offset, filename)
  Haml::Util.haml_warn <<MESSAGE
ECATION WARNING:
ine #{line}#{", character #{offset}" if offset}#{" of '#{filename}'" if filename}
ing #{types} with #{"||" if guarded}= has been deprecated and will be removed in version 3.2.
"#{name}: #{val}#{" !default" if guarded}" instead.
can use `sass-convert --in-place --from sass2 file.sass' to convert files automatically.
AGE
end