(element)
| 3225 | } |
| 3226 | |
| 3227 | function getDescendants(element) { |
| 3228 | var descendants = []; |
| 3229 | |
| 3230 | visitDescendants(element, function(descendant) { |
| 3231 | descendants.push(descendant); |
| 3232 | }); |
| 3233 | |
| 3234 | return descendants; |
| 3235 | } |
| 3236 | |
| 3237 | function visitDescendants(element, visit) { |
| 3238 | if (element.children) { |
no test coverage detected