Index: Source/bindings/tests/results/V8TestObjectPython.cpp |
diff --git a/Source/bindings/tests/results/V8TestObjectPython.cpp b/Source/bindings/tests/results/V8TestObjectPython.cpp |
index c918b86f02a067ef3ff41f2d115d36eb52af37fb..18a2b604af0fc8b366ce7408ac9cb585b5697f43 100644 |
--- a/Source/bindings/tests/results/V8TestObjectPython.cpp |
+++ b/Source/bindings/tests/results/V8TestObjectPython.cpp |
@@ -5018,7 +5018,7 @@ static void overloadedMethodGMethod(const v8::FunctionCallbackInfo<v8::Value>& i |
overloadedMethodG1Method(info); |
return; |
} |
- if (((info.Length() == 1) && (info[0]->IsNull() || info[0]->IsUndefined() || info[0]->IsString() || info[0]->IsObject()))) { |
+ if (((info.Length() == 1) && (isUndefinedOrNull(info[0]) || info[0]->IsString() || info[0]->IsObject()))) { |
overloadedMethodG2Method(info); |
return; |
} |