class Sass::CompileError

def full_message(highlight: nil, order: nil, **)

Returns:
  • (String) -
def full_message(highlight: nil, order: nil, **)
  return super if @full_message.nil?
  highlight = Exception.to_tty? if highlight.nil?
  if highlight
    @full_message.dup
  else
    @full_message.gsub(/\e\[[0-9;]*m/, '')
  end
end