Name Generation
(node *ast.Node)
| 5957 | // |
| 5958 | |
| 5959 | func (p *Printer) shouldReuseTempVariableScope(node *ast.Node) bool { |
| 5960 | return node != nil && p.emitContext.EmitFlags(node)&EFReuseTempVariableScope != 0 |
| 5961 | } |
| 5962 | |
| 5963 | func (p *Printer) pushNameGenerationScope(node *ast.Node) { |
| 5964 | p.nameGenerator.PushScope(p.shouldReuseTempVariableScope(node)) |
no test coverage detected