(node, state, c)
| 29 | const noop = FunctionPrototype; |
| 30 | const visitorsWithoutAncestors = { |
| 31 | ClassDeclaration(node, state, c) { |
| 32 | if (isTopLevelDeclaration(state)) { |
| 33 | state.prepend(node, `${node.id.name}=`); |
| 34 | ArrayPrototypePush( |
| 35 | state.hoistedDeclarationStatements, |
| 36 | `let ${node.id.name}; `, |
| 37 | ); |
| 38 | } |
| 39 | |
| 40 | walk.base.ClassDeclaration(node, state, c); |
| 41 | }, |
| 42 | ForOfStatement(node, state, c) { |
| 43 | if (node.await === true) { |
| 44 | state.containsAwait = true; |
nothing calls this directly
no test coverage detected