| 221 | return cachedValue; |
| 222 | } |
| 223 | |
| 224 | if (isValueUndefined(cachedValue.get())) { |
| 225 | cachedValue = newLongUncached(JavaScriptLong(value), exceptionTracker); |
| 226 | if (!exceptionTracker) { |
| 227 | return cachedValue; |
| 228 | } |
| 229 | |
| 230 | setObjectPropertyIndex(cache.get(), cacheIndex, cachedValue.get(), exceptionTracker); |
| 231 | } |
| 232 | |
| 233 | return cachedValue; |
nothing calls this directly
no test coverage detected