This commit is contained in:
kuangthree 2024-02-14 17:00:40 +08:00
parent 2b418c5717
commit d99e949da9
1 changed files with 1 additions and 1 deletions

View File

@ -4664,7 +4664,7 @@ export class Get extends Uninstantable {
*/
static dynamicVariable(source){
if(typeof source == 'function'){
return source.call(...(arguments.slice(1)));
return source.call(null,...(arguments.slice(1)));
}
return source;
}