You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: JavaBytecodeCompiler/src/main/java/org/openzen/zenscript/javabytecode/compiler/JavaMethodBytecodeCompiler.java
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -394,7 +394,7 @@ public Void builtinStaticMethod(BuiltinMethodSymbol method, TypeID returnType, C
394
394
caseBYTE_ADD_STRING:
395
395
caseBYTE_CAT_STRING:
396
396
arguments[0].accept(expressionVisitor);
397
-
javaWriter.constant(0xFF);
397
+
javaWriter.siPush((short) 0xFF);
398
398
javaWriter.iAnd();
399
399
javaWriter.invokeStatic(INTEGER_TO_STRING);
400
400
arguments[1].accept(expressionVisitor);
@@ -629,42 +629,42 @@ public Void builtinStaticMethod(BuiltinMethodSymbol method, TypeID returnType, C
0 commit comments