(node *ast.Node, format ListFormat)
| 803 | } |
| 804 | |
| 805 | func (p *Printer) shouldEmitOnNewLine(node *ast.Node, format ListFormat) bool { |
| 806 | if p.emitContext.EmitFlags(node)&EFStartOnNewLine != 0 { |
| 807 | return true |
| 808 | } |
| 809 | return format&LFPreferNewLine != 0 |
| 810 | } |
| 811 | |
| 812 | func (p *Printer) shouldEmitSourceMaps(node *ast.Node) bool { |
| 813 | return !p.sourceMapsDisabled && |
no test coverage detected