* bidirectionally links two entries of the LRU linked list
(nextEntry, prevEntry)
| 6422 | * bidirectionally links two entries of the LRU linked list |
| 6423 | */ |
| 6424 | function link(nextEntry, prevEntry) { |
| 6425 | if (nextEntry != prevEntry) { |
| 6426 | if (nextEntry) nextEntry.p = prevEntry; //p stands for previous, 'prev' didn't minify |
| 6427 | if (prevEntry) prevEntry.n = nextEntry; //n stands for next, 'next' didn't minify |
| 6428 | } |
| 6429 | } |
| 6430 | } |
| 6431 | |
| 6432 |
no outgoing calls
no test coverage detected