(entry)
| 336 | } |
| 337 | |
| 338 | [kMaybeBuffer](entry) { |
| 339 | if (!this.#entryTypes.has(entry.entryType)) |
| 340 | return; |
| 341 | ArrayPrototypePush(this.#buffer, entry); |
| 342 | kPending.add(this); |
| 343 | if (kPending.size) |
| 344 | queuePending(); |
| 345 | } |
| 346 | |
| 347 | [kDispatch]() { |
| 348 | const entryList = new PerformanceObserverEntryList(kSkipThrow, this.takeRecords()); |
nothing calls this directly
no test coverage detected