* bidirectionally links two entries of the LRU linked list
(nextEntry, prevEntry)
| 7224 | * bidirectionally links two entries of the LRU linked list |
| 7225 | */ |
| 7226 | function link(nextEntry, prevEntry) { |
| 7227 | if (nextEntry !== prevEntry) { |
| 7228 | if (nextEntry) nextEntry.p = prevEntry; //p stands for previous, 'prev' didn't minify |
| 7229 | if (prevEntry) prevEntry.n = nextEntry; //n stands for next, 'next' didn't minify |
| 7230 | } |
| 7231 | } |
| 7232 | } |
| 7233 | |
| 7234 |
no outgoing calls
no test coverage detected