class Sass::Tree::Visitors::ToCss

def lstrip

lstrip the first output in the given block.
def lstrip
  old_lstrip = @lstrip
  @lstrip = true
  yield
ensure
  @lstrip = @lstrip && old_lstrip
end