Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -534,8 +534,9 @@ private String generateBadLVTMessage(final Callback callback) {
if (expected.equals(found)) {
return String.format("Invalid descriptor on %s! Expected %s but found %s", this.info, callback.getDescriptor(), this.methodNode.desc);
}
return String.format("LVT in %s has incompatible changes at opcode %d in callback %s.\nExpected: %s\n Found: %s",
callback.target, position, this, expected, found);
String mixinConfigName = this.info.getContext().getMixin().getConfig().getName();
return String.format("LVT in %s has incompatible changes at opcode %d in callback %s provided by '%s'.\nExpected: %s\n Found: %s",
callback.target, position, this, mixinConfigName, expected, found);
}

/**
Expand Down