From 1aa8b425982a6d30a177bc25a70a325652209ee0 Mon Sep 17 00:00:00 2001 From: Jonas Herzig Date: Thu, 11 Nov 2021 20:37:10 +0100 Subject: Fix methods in mixin being remapped when they should not be --- .../gradle/remap/mapper/TestMixinShadow.kt | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/test/kotlin/com/replaymod/gradle/remap/mapper/TestMixinShadow.kt (limited to 'src/test/kotlin/com/replaymod/gradle/remap/mapper/TestMixinShadow.kt') diff --git a/src/test/kotlin/com/replaymod/gradle/remap/mapper/TestMixinShadow.kt b/src/test/kotlin/com/replaymod/gradle/remap/mapper/TestMixinShadow.kt new file mode 100644 index 0000000..bc4ebe6 --- /dev/null +++ b/src/test/kotlin/com/replaymod/gradle/remap/mapper/TestMixinShadow.kt @@ -0,0 +1,26 @@ +package com.replaymod.gradle.remap.mapper + +import com.replaymod.gradle.remap.util.TestData +import io.kotest.matchers.shouldBe +import org.junit.jupiter.api.Test + +class TestMixinShadow { + @Test + fun `remaps shadow method and references to it`() { + TestData.remap(""" + @org.spongepowered.asm.mixin.Mixin(a.pkg.A.class) + abstract class MixinA { + @org.spongepowered.asm.mixin.Shadow + protected abstract a.pkg.A getA(); + private void test() { this.getA(); } + } + """.trimIndent()) shouldBe """ + @org.spongepowered.asm.mixin.Mixin(b.pkg.B.class) + abstract class MixinA { + @org.spongepowered.asm.mixin.Shadow + protected abstract b.pkg.B getB(); + private void test() { this.getB(); } + } + """.trimIndent() + } +} \ No newline at end of file -- cgit