Fixed #1888 AS3 - Coerces, module operator

This commit is contained in:
Jindra Petřík
2023-01-14 17:22:25 +01:00
parent fb76fd94a9
commit 2a8c6a7858
2 changed files with 3 additions and 3 deletions

View File

@@ -80,9 +80,8 @@ public class ModuloAVM2Item extends BinaryOpItem implements CompoundableBinaryOp
}
@Override
public GraphTargetItem returnType() {
return TypeItem.INT; //?
//return TypeItem.UNBOUNDED;
public GraphTargetItem returnType() {
return TypeItem.NUMBER;
}
@Override