remove all strings when remove imports

This commit is contained in:
2023-06-06 13:15:31 +07:00
parent 6089c18d30
commit 1b7da037bb
2 changed files with 114 additions and 0 deletions

View File

@ -8,6 +8,8 @@ type removeImports struct{}
func (action *removeImports) withMacho(mf *MachoFile) error {
mf.Context().RemoveBindSymbols()
mf.Context().RemoveSymbolTable()
mf.Context().RemoveExportTrie()
return nil
}