MCPcopy Index your code
hub / github.com/angular-ui/ui-router / link

Function link

test/angular/1.6/angular.js:7063–7068  ·  view source on GitHub ↗

* bidirectionally links two entries of the LRU linked list

(nextEntry, prevEntry)

Source from the content-addressed store, hash-verified

7061 * bidirectionally links two entries of the LRU linked list
7062 */
7063 function link(nextEntry, prevEntry) {
7064 if (nextEntry !== prevEntry) {
7065 if (nextEntry) nextEntry.p = prevEntry; //p stands for previous, 'prev' didn't minify
7066 if (prevEntry) prevEntry.n = nextEntry; //n stands for next, 'next' didn't minify
7067 }
7068 }
7069 }
7070
7071

Callers 2

cacheFactoryFunction · 0.70
refreshFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected