class RSpec::Support::ObjectFormatter

def with_entering_structure(structure)

def with_entering_structure(structure)
  @current_structure_stack.push(structure)
  return_value = yield
  @current_structure_stack.pop
  return_value
end