(node, c)
| 238 | } |
| 239 | }, |
| 240 | ForInStatement(node, c) { |
| 241 | // We can't remove the var in a for-in, as that would result in an invalid syntax. Skip the LHS. |
| 242 | c(node.right); |
| 243 | c(node.body); |
| 244 | }, |
| 245 | ForOfStatement(node, c) { |
| 246 | // We can't remove the var in a for-of, as that would result in an invalid syntax. Skip the LHS. |
| 247 | c(node.right); |