class Playwright::PlaywrightApi::ApiImplementationWrapper

def initialize(impl)

def initialize(impl)
  impl_class_name = impl.class.name
  unless impl_class_name.end_with?("Impl")
    raise "#{impl_class_name} is not Impl"
  end
  @impl = impl
end