Skip to content

Commit

Permalink
Stack size reduced for function call without parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
ackava committed Oct 23, 2023
1 parent 9ef2e77 commit 4b32454
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ IFastEnumerable<AstExpression> arguments
@this, paramArray1);
}

var paramArray = VisitArguments(JSUndefinedBuilder.Value, arguments);
var paramArray = VisitArguments(null, arguments);
var target = VisitExpression(callee);
return JSFunctionBuilder.InvokeFunction(target, paramArray, coalesce);
}
Expand Down

0 comments on commit 4b32454

Please sign in to comment.