Merge remote-tracking branch 'origin/GP-3965_DecompilerBraces'

(Closes #81, Closes #1937, Closes #1938, Closes #4914, Closes #1240)
This commit is contained in:
Ryan Kurtz 2023-12-01 06:42:42 -05:00
commit bad90171c4
11 changed files with 374 additions and 74 deletions

View file

@ -314,6 +314,8 @@ public record ElementId(String name, int id) {
public static final ElementId ELEM_TOGGLERULE = new ElementId("togglerule", 209);
public static final ElementId ELEM_WARNING = new ElementId("warning", 210);
public static final ElementId ELEM_BRACEFORMAT = new ElementId("braceformat", 284);
// jumptable
public static final ElementId ELEM_BASICOVERRIDE = new ElementId("basicoverride", 211);
public static final ElementId ELEM_DEST = new ElementId("dest", 212);
@ -439,5 +441,5 @@ public record ElementId(String name, int id) {
public static final ElementId ELEM_JOIN_PER_PRIMITIVE =
new ElementId("join_per_primitive", 283);
public static final ElementId ELEM_UNKNOWN = new ElementId("XMLunknown", 284);
public static final ElementId ELEM_UNKNOWN = new ElementId("XMLunknown", 285);
}