| index.js |
|
1045 |
100 % |
| manifest-state.js |
|
4130 |
100 % |
| moz.build |
|
356 |
- |
| page-state.js |
|
754 |
100 % |
| session-history-state.js |
Given a tree-like data structure, performs a pre-order (also known as tree
order) traversal of that tree. Since the elements can be anything, the
caller needs to supply a way to find how many children a specific node has
as well as a way to iterate children.
@param {*} root Starting node of the traversal
@param {function(*): int} getChildCount Helper to find child count
@param {function(*, int): *} getChildAtIndex Helper to find child at index
|
7526 |
95 % |
| ui-state.js |
|
768 |
100 % |
| workers-state.js |
|
1665 |
100 % |