(exp)
| 278 | } |
| 279 | }, |
| 280 | removeIdentifiers(exp) { |
| 281 | if (!__BROWSER__) { |
| 282 | if (isString(exp)) { |
| 283 | removeId(exp) |
| 284 | } else if (exp.identifiers) { |
| 285 | exp.identifiers.forEach(removeId) |
| 286 | } else if (exp.type === NodeTypes.SIMPLE_EXPRESSION) { |
| 287 | removeId(exp.content) |
| 288 | } |
| 289 | } |
| 290 | }, |
| 291 | hoist(exp) { |
| 292 | if (isString(exp)) exp = createSimpleExpression(exp) |
| 293 | context.hoists.push(exp) |
no test coverage detected