Update tiny remapper, register the new LV pattern as invalid with TR.

dev/0.11
modmuss50 2021-09-16 20:35:10 +01:00
parent 2a040d03d7
commit 2ec1dd032f
2 changed files with 8 additions and 1 deletions

View File

@ -78,7 +78,7 @@ dependencies {
}
// tinyfile management
implementation ('net.fabricmc:tiny-remapper:0.5.0')
implementation ('net.fabricmc:tiny-remapper:0.6.0')
implementation 'net.fabricmc:access-widener:2.0.0'
implementation 'net.fabricmc:mapping-io:0.2.1'

View File

@ -28,6 +28,7 @@ import java.io.File;
import java.io.IOException;
import java.nio.file.Path;
import java.util.Map;
import java.util.regex.Pattern;
import com.google.common.collect.ImmutableMap;
import org.gradle.api.Project;
@ -47,6 +48,11 @@ public final class TinyRemapperHelper {
.put("javax/annotation/concurrent/Immutable", "org/jetbrains/annotations/Unmodifiable")
.build();
/**
* Matches the new local variable naming format introduced in 21w37a.
*/
private static final Pattern MC_LV_PATTERN = Pattern.compile("\\$\\$\\d+");
private TinyRemapperHelper() {
}
@ -58,6 +64,7 @@ public final class TinyRemapperHelper {
.withMappings(out -> JSR_TO_JETBRAINS.forEach(out::acceptClass))
.renameInvalidLocals(true)
.rebuildSourceFilenames(true)
.invalidLvNamePattern(MC_LV_PATTERN)
.build();
}