2025-05-21 09:23:29 +08:00
|
|
|
|
namespace Obfuz.ObfusPasses.SymbolObfus.NameMakers
|
|
|
|
|
{
|
|
|
|
|
public interface INameScope
|
|
|
|
|
{
|
2025-05-23 19:48:55 +08:00
|
|
|
|
bool AddPreservedName(string name);
|
|
|
|
|
|
|
|
|
|
bool IsNamePreserved(string name);
|
2025-05-21 09:23:29 +08:00
|
|
|
|
|
|
|
|
|
string GetNewName(string originalName, bool reuse);
|
|
|
|
|
}
|
|
|
|
|
}
|