(nodes, bindFunction)
| 45202 | bindEach(nodes, function (n) { return n.kind !== 256 /* SyntaxKind.FunctionDeclaration */ ? bind(n) : undefined; }); |
| 45203 | } |
| 45204 | function bindEach(nodes, bindFunction) { |
| 45205 | if (bindFunction === void 0) { bindFunction = bind; } |
| 45206 | if (nodes === undefined) { |
| 45207 | return; |
| 45208 | } |
| 45209 | ts.forEach(nodes, bindFunction); |
| 45210 | } |
| 45211 | function bindEachChild(node) { |
| 45212 | ts.forEachChild(node, bind, bindEach); |
| 45213 | } |
no test coverage detected