class Rufo::Formatter

def push_call(call)

def push_call(call)
  old_call      = @current_call
  @current_call = call
  # A call can specify hash arguments so it acts as a
  # hash for key alignment purposes
  push_hash(call) do
    yield
  end
  @current_call = old_call
end