class RSpec::Core::SharedExampleGroupInclusionStackFrame

def self.with_frame(name, location)

Other tags:
    Private: -
def self.with_frame(name, location)
  current_stack = shared_example_group_inclusions
  current_stack << new(name, location)
  yield
ensure
  current_stack.pop
end