| index.js |
|
1045 |
- |
| manifest-state.js |
|
4130 |
- |
| moz.build |
|
356 |
- |
| page-state.js |
|
754 |
- |
| 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
|
6541 |
- |
| ui-state.js |
|
768 |
- |
| workers-state.js |
|
1665 |
- |