diff options
author | 2023-09-25 23:27:55 -0700 | |
---|---|---|
committer | 2023-09-25 23:27:55 -0700 | |
commit | aec0d35f9b90083b93299859822ac67f3389a6d1 (patch) | |
tree | a4310b05be13ad44ef08b826e5dd84b52c36e504 /src | |
parent | b5c80d947630b0d73ca114c1c6c47b4f7845e398 (diff) | |
download | bun-aec0d35f9b90083b93299859822ac67f3389a6d1.tar.gz bun-aec0d35f9b90083b93299859822ac67f3389a6d1.tar.zst bun-aec0d35f9b90083b93299859822ac67f3389a6d1.zip |
no this value (#6063)
Diffstat (limited to 'src')
-rw-r--r-- | src/bun.js/bindings/CallSite.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bun.js/bindings/CallSite.cpp b/src/bun.js/bindings/CallSite.cpp index 48fe82275..7667d9606 100644 --- a/src/bun.js/bindings/CallSite.cpp +++ b/src/bun.js/bindings/CallSite.cpp @@ -45,7 +45,7 @@ void CallSite::finishCreation(VM& vm, JSC::JSGlobalObject* globalObject, JSCStac m_function.set(vm, this, JSC::jsUndefined()); m_flags |= static_cast<unsigned int>(Flags::IsStrict); } else { - if (callFrame) { + if (callFrame && callFrame->thisValue()) { // We know that we're not in strict mode m_thisValue.set(vm, this, callFrame->thisValue().toThis(globalObject, JSC::ECMAMode::sloppy())); } else { |