(node, initializer, condition, incrementor, statement)
| 24888 | } |
| 24889 | // @api |
| 24890 | function updateForStatement(node, initializer, condition, incrementor, statement) { |
| 24891 | return node.initializer !== initializer |
| 24892 | || node.condition !== condition |
| 24893 | || node.incrementor !== incrementor |
| 24894 | || node.statement !== statement |
| 24895 | ? update(createForStatement(initializer, condition, incrementor, statement), node) |
| 24896 | : node; |
| 24897 | } |
| 24898 | // @api |
| 24899 | function createForInStatement(initializer, expression, statement) { |
| 24900 | var node = createBaseNode(243 /* SyntaxKind.ForInStatement */); |
nothing calls this directly
no test coverage detected