Skip to content

Commit

Permalink
use Number instead of double for functions (will break things ;-) )
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Sep 10, 2024
1 parent d9303cc commit d86ad71
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ static Type _writeOutFirstBIF(BytecodeContext bc, BIF bif, int mode, boolean las
if (m == null) {

StringBuilder sb = new StringBuilder();
sb.append("call(");
sb.append(bif.getName() + ".call(");
for (FunctionLibFunctionArg flfa: fargs) {
if (sb.length() > 5) sb.append(", ");
sb.append(flfa.getTypeAsString()).append(' ').append(flfa.getName());
Expand Down

0 comments on commit d86ad71

Please sign in to comment.