class RuboCop::Cop::Sorbet::SignatureCop

def allowed_recv(recv)

def allowed_recv(recv)
  return true unless recv
  return true if with_runtime?(recv)
  return true if without_runtime?(recv)
  false
end