| 999 | auto propertyAtom = properties[i].atom; |
| 1000 | |
| 1001 | bool shouldContinue = |
| 1002 | visitor.visitPropertyName(*this, object, toValdiJSPropertyName(propertyAtom), exceptionTracker); |
| 1003 | if (!exceptionTracker || !shouldContinue) { |
| 1004 | JS_FreePropertyEnum(_context, properties, len); |
| 1005 | return; |
| 1006 | } |
| 1007 | } |
| 1008 |
nothing calls this directly
no test coverage detected