class Sass::Compiler::Host::LoggerRegistry::WarnContext

Contextual information passed to ‘warn`.

def initialize(event)

def initialize(event)
  super
  @deprecation = event.type == :DEPRECATION_WARNING
  @deprecation_type = (event.deprecation_type if @deprecation)
  @stack = event.stack_trace
end