This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
Track unmodified methods and warn on unexpected/missing methods for important classes #75
Labels
Enhancement
New feature or request
In order to mitigate possible issues with us missing changes in future minecraft updates, in our ASM transformations we may want to track unmodified methods as well as transformed ones. We could then detect when there are missing methods, or untransformed methods that aren't in this list, indicating new methods.
Doing this for every class would be excessive, but doing it for some of the important classes (
Level
,ClientLevel
,ServerLevel
,LevelChunk
etc.) could help us catch bugs while updating to new minecraft versions.Once our ASM transformations are data-driven, this could, for example, take the form of an extra array of untransformed method names for each important class.
The text was updated successfully, but these errors were encountered: