(node *ast.VariableStatement)
| 3379 | } |
| 3380 | |
| 3381 | func (p *Printer) emitVariableStatement(node *ast.VariableStatement) { |
| 3382 | state := p.enterNode(node.AsNode()) |
| 3383 | p.emitModifierList(node.AsNode(), node.Modifiers(), false /*allowDecorators*/) |
| 3384 | p.emitVariableDeclarationList(node.DeclarationList.AsVariableDeclarationList()) |
| 3385 | p.writeTrailingSemicolon() |
| 3386 | p.exitNode(node.AsNode(), state) |
| 3387 | } |
| 3388 | |
| 3389 | func (p *Printer) emitEmptyStatement(node *ast.EmptyStatement, isEmbeddedStatement bool) { |
| 3390 | state := p.enterNode(node.AsNode()) |
no test coverage detected