зеркало из https://github.com/mozilla/rhino.git
pass ScriptRuntime.emptyArgs in getApplyArguments()
This commit is contained in:
Родитель
cc302b4f8f
Коммит
aa33449bc9
|
@ -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);
|
||||
|
|
Загрузка…
Ссылка в новой задаче