We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With the fix to #518 (1e1aa7f), Mixin tries to pretty print a field (asm field) with SignaturePrinter (works only with methods)
This doesn't crash in Mixin 0.8.4.
Type.getReturnType(desc) and Type.getArgumentTypes(desc): Expects a description with ):
Type.getReturnType(desc)
Type.getArgumentTypes(desc)
)
Mixin/src/main/java/org/spongepowered/asm/util/SignaturePrinter.java
Line 86 in 155314e
TypeUtils uses it:
Mixin/src/ap/java/org/spongepowered/tools/obfuscation/mirror/TypeUtils.java
Line 277 in 155314e
TypeHandleASM uses it for anonymous classes for fields:
Mixin/src/ap/java/org/spongepowered/tools/obfuscation/mirror/TypeHandleASM.java
Line 224 in 155314e
Mixin: (0.8.5 on 1.18 ForgeGradle)
@Mixin(targets = "net.minecraft.server.level.ServerPlayer$2") public class ServerPlayerEntityMixin { @Shadow ServerPlayer f_143458_; }
The text was updated successfully, but these errors were encountered:
Work around SpongePowered#560
0e1bace
Co-authored-by: shedaniel <[email protected]>
Fix license headers and downgrade mixin
23dda32
Mixin was downgraded to avoid SpongePowered/Mixin#560
1edd5f1
I'm encountering this issue with Forge using Architectury. Is there maybe a way I could set it to use version 0.8.4 or the Fabric fork for now?
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
With the fix to #518 (1e1aa7f), Mixin tries to pretty print a field (asm field) with SignaturePrinter (works only with methods)
This doesn't crash in Mixin 0.8.4.
Type.getReturnType(desc)
andType.getArgumentTypes(desc)
: Expects a description with)
:Mixin/src/main/java/org/spongepowered/asm/util/SignaturePrinter.java
Line 86 in 155314e
TypeUtils uses it:
Mixin/src/ap/java/org/spongepowered/tools/obfuscation/mirror/TypeUtils.java
Line 277 in 155314e
TypeHandleASM uses it for anonymous classes for fields:
Mixin/src/ap/java/org/spongepowered/tools/obfuscation/mirror/TypeHandleASM.java
Line 224 in 155314e
Mixin: (0.8.5 on 1.18 ForgeGradle)
The text was updated successfully, but these errors were encountered: