class Sass::Tree::Visitors::ToCss

def with_tabs(tabs)

def with_tabs(tabs)
  old_tabs, @tabs = @tabs, tabs
  yield
ensure
  @tabs = old_tabs
end