Пример #1
0
void DelSuperPass::run_pass(DexStoresVector& stores, ConfigFiles& cfg, PassManager& mgr) {
  const auto& scope = build_class_scope(stores);
  DelSuper(scope).run(/* do_delete = */true, mgr);
}
Пример #2
0
void DelSuperPass::run_pass(DexClassesVector& dexen, ConfigFiles& cfg) {
  const auto& scope = build_class_scope(dexen);
  DelSuper(scope).run(/* do_delete = */true);
}