crytic/slither
Ver no GitHubRename IR classes so names do not clash with others.
Open
#1.059 aberto em 15 de fev. de 2022
enhancementgood first issuehelp wanted
Métricas do repositório
- Stars
- (4.769 stars)
- Métricas de merge de PR
- (Mesclagem média 54d 9h) (2 fundiu PRs em 30d)
Description
I noticed that the TypeConversion class from Slither IR
has the same name as another class from Slither Core
This makes it so that, if you are not extra careful, you can import the wrong class.
I think that it would be a good idea to go through all the classes and look for those that have name clashes across different "packages" and rename them, for example by adding an IR suffix to them (TypeConversionIR).
NOTE:
This might apply to different packages i.e not only SlitherIR, in which case a different suffix would need to be added.