Index: Source/bindings/tests/results/core/V8TestObject.cpp |
diff --git a/Source/bindings/tests/results/core/V8TestObject.cpp b/Source/bindings/tests/results/core/V8TestObject.cpp |
index 63eedf547322b466f3f6a715b4d299dbfbeeb3c5..ce1b9a70d9100fafb6db9e1f7e8e66c36957de8e 100644 |
--- a/Source/bindings/tests/results/core/V8TestObject.cpp |
+++ b/Source/bindings/tests/results/core/V8TestObject.cpp |
@@ -12128,7 +12128,8 @@ static void namedPropertyQuery(v8::Local<v8::Name> name, const v8::PropertyCallb |
AtomicString propertyName = toCoreAtomicString(name.As<v8::String>()); |
v8::String::Utf8Value namedProperty(name); |
ExceptionState exceptionState(ExceptionState::GetterContext, *namedProperty, "TestObject", info.Holder(), info.GetIsolate()); |
- bool result = impl->namedPropertyQuery(propertyName, exceptionState); |
+ ScriptState* scriptState = ScriptState::current(info.GetIsolate()); |
+ bool result = impl->namedPropertyQuery(scriptState, propertyName, exceptionState); |
if (exceptionState.throwIfNeeded()) |
return; |
if (!result) |