pass ScriptRuntime.emptyArgs in getApplyArguments()

This commit is contained in:
Ronald Brill 2024-08-02 11:13:01 +02:00
Родитель cc302b4f8f
Коммит aa33449bc9
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -2853,7 +2853,7 @@ public class ScriptRuntime {
}
static Object[] getApplyArguments(Context cx, Object arg1) {
if (arg1 == null || Undefined.isUndefined(arg1)) {
if (arg1 == null || Undefined.isUndefined(arg1) || arg1 == ScriptRuntime.emptyArgs) {
return ScriptRuntime.emptyArgs;
} else if (arg1 instanceof Scriptable && isArrayLike((Scriptable) arg1)) {
return cx.getElements((Scriptable) arg1);