| 244 | auto objectFinalizerKey = callObjectAsFunction(symbolValue.get(), callContext); |
| 245 | |
| 246 | if (!exceptionTracker) { |
| 247 | return; |
| 248 | } |
| 249 | |
| 250 | _objectFinalizerAtomKey = JS_ValueToAtom(_context, fromValdiJSValue(objectFinalizerKey.get())); |
| 251 | if (_objectFinalizerAtomKey == JS_ATOM_NULL) { |
| 252 | setExceptionToTracker(exceptionTracker); |
| 253 | return; |
| 254 | } |
| 255 | } |
| 256 | |
| 257 | void QuickJSJavaScriptContext::setExceptionToTracker(Valdi::JSExceptionTracker& exceptionTracker) { |
nothing calls this directly
no test coverage detected