* bidirectionally links two entries of the LRU linked list
(nextEntry, prevEntry)
| 7159 | * bidirectionally links two entries of the LRU linked list |
| 7160 | */ |
| 7161 | function link(nextEntry, prevEntry) { |
| 7162 | if (nextEntry !== prevEntry) { |
| 7163 | if (nextEntry) nextEntry.p = prevEntry; //p stands for previous, 'prev' didn't minify |
| 7164 | if (prevEntry) prevEntry.n = nextEntry; //n stands for next, 'next' didn't minify |
| 7165 | } |
| 7166 | } |
| 7167 | } |
| 7168 | |
| 7169 |
no outgoing calls
no test coverage detected