(instance)
| 17985 | * owners, starting at the root and ending with the instance itself. |
| 17986 | */ |
| 17987 | var findOwnerStack = function (instance) { |
| 17988 | if (!instance) { |
| 17989 | return []; |
| 17990 | } |
| 17991 | |
| 17992 | var stack = []; |
| 17993 | do { |
| 17994 | stack.push(instance); |
| 17995 | } while (instance = instance._currentElement._owner); |
| 17996 | stack.reverse(); |
| 17997 | return stack; |
| 17998 | }; |
| 17999 | |
| 18000 | var didWarn = {}; |
| 18001 |
no outgoing calls
no test coverage detected
searching dependent graphs…