Skip to content

Commit

Permalink
feat(#488): fix compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
volodya-lombrozo committed Mar 13, 2024
1 parent d1de1e1 commit b24a489
Showing 1 changed file with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -915,7 +915,7 @@ private enum Instruction {
IFEQ(Opcodes.IFEQ, (visitor, arguments) ->
visitor.visitJumpInsn(
Opcodes.IFEQ,
(Label) arguments.get(0)
Label.class.cast(arguments.get(0))
)
),

Expand All @@ -925,7 +925,7 @@ private enum Instruction {
IFNE(Opcodes.IFNE, (visitor, arguments) ->
visitor.visitJumpInsn(
Opcodes.IFNE,
(Label) arguments.get(0)
Label.class.cast(arguments.get(0))
)
),

Expand All @@ -935,7 +935,7 @@ private enum Instruction {
IFLT(Opcodes.IFLT, (visitor, arguments) ->
visitor.visitJumpInsn(
Opcodes.IFLT,
(Label) arguments.get(0)
Label.class.cast(arguments.get(0))
)
),

Expand All @@ -945,7 +945,7 @@ private enum Instruction {
IFGE(Opcodes.IFGE, (visitor, arguments) ->
visitor.visitJumpInsn(
Opcodes.IFGE,
(Label) arguments.get(0)
Label.class.cast(arguments.get(0))
)
),

Expand All @@ -955,7 +955,7 @@ private enum Instruction {
IFGT(Opcodes.IFGT, (visitor, arguments) ->
visitor.visitJumpInsn(
Opcodes.IFGT,
(Label) arguments.get(0)
Label.class.cast(arguments.get(0))
)
),

Expand All @@ -965,7 +965,7 @@ private enum Instruction {
IFLE(Opcodes.IFLE, (visitor, arguments) ->
visitor.visitJumpInsn(
Opcodes.IFLE,
(Label) arguments.get(0)
Label.class.cast(arguments.get(0))
)
),

Expand All @@ -975,7 +975,7 @@ private enum Instruction {
IF_ICMPEQ(Opcodes.IF_ICMPEQ, (visitor, arguments) ->
visitor.visitJumpInsn(
Opcodes.IF_ICMPEQ,
(Label) arguments.get(0)
Label.class.cast(arguments.get(0))
)
),

Expand All @@ -985,7 +985,7 @@ private enum Instruction {
IF_ICMPNE(Opcodes.IF_ICMPNE, (visitor, arguments) ->
visitor.visitJumpInsn(
Opcodes.IF_ICMPNE,
(Label) arguments.get(0)
Label.class.cast(arguments.get(0))
)
),

Expand All @@ -995,7 +995,7 @@ private enum Instruction {
IF_ICMPLT(Opcodes.IF_ICMPLT, (visitor, arguments) ->
visitor.visitJumpInsn(
Opcodes.IF_ICMPLT,
(Label) arguments.get(0)
Label.class.cast(arguments.get(0))
)
),

Expand All @@ -1005,7 +1005,7 @@ private enum Instruction {
IF_ICMPGE(Opcodes.IF_ICMPGE, (visitor, arguments) ->
visitor.visitJumpInsn(
Opcodes.IF_ICMPGE,
(Label) arguments.get(0)
Label.class.cast(arguments.get(0))
)
),

Expand All @@ -1015,7 +1015,7 @@ private enum Instruction {
IF_ICMPGT(Opcodes.IF_ICMPGT, (visitor, arguments) ->
visitor.visitJumpInsn(
Opcodes.IF_ICMPGT,
(Label) arguments.get(0)
Label.class.cast(arguments.get(0))
)
),

Expand All @@ -1025,7 +1025,7 @@ private enum Instruction {
IF_ICMPLE(Opcodes.IF_ICMPLE, (visitor, arguments) ->
visitor.visitJumpInsn(
Opcodes.IF_ICMPLE,
(Label) arguments.get(0)
Label.class.cast(arguments.get(0))
)
),

Expand All @@ -1035,7 +1035,7 @@ private enum Instruction {
IF_ACMPEQ(Opcodes.IF_ACMPEQ, (visitor, arguments) ->
visitor.visitJumpInsn(
Opcodes.IF_ACMPEQ,
(Label) arguments.get(0)
Label.class.cast(arguments.get(0))
)
),

Expand All @@ -1045,7 +1045,7 @@ private enum Instruction {
IF_ACMPNE(Opcodes.IF_ACMPNE, (visitor, arguments) ->
visitor.visitJumpInsn(
Opcodes.IF_ACMPNE,
(Label) arguments.get(0)
Label.class.cast(arguments.get(0))
)
),

Expand All @@ -1055,7 +1055,7 @@ private enum Instruction {
GOTO(Opcodes.GOTO, (visitor, arguments) ->
visitor.visitJumpInsn(
Opcodes.GOTO,
(Label) arguments.get(0)
Label.class.cast(arguments.get(0))
)
),

Expand All @@ -1065,7 +1065,7 @@ private enum Instruction {
JSR(Opcodes.JSR, (visitor, arguments) ->
visitor.visitJumpInsn(
Opcodes.JSR,
(Label) arguments.get(0)
Label.class.cast(arguments.get(0))
)
),

Expand Down Expand Up @@ -1379,7 +1379,7 @@ private enum Instruction {
IFNULL(Opcodes.IFNULL, (visitor, arguments) ->
visitor.visitJumpInsn(
Opcodes.IFNULL,
(Label) arguments.get(0)
Label.class.cast(arguments.get(0))
)
),

Expand All @@ -1389,7 +1389,7 @@ private enum Instruction {
IFNONNULL(Opcodes.IFNONNULL, (visitor, arguments) ->
visitor.visitJumpInsn(
Opcodes.IFNONNULL,
(Label) arguments.get(0)
Label.class.cast(arguments.get(0))
)
);

Expand Down

0 comments on commit b24a489

Please sign in to comment.