(indentRequested bool)
| 394 | } |
| 395 | |
| 396 | func (p *Printer) decreaseIndentIf(indentRequested bool) { |
| 397 | if indentRequested { |
| 398 | p.decreaseIndent() |
| 399 | } |
| 400 | } |
| 401 | |
| 402 | func (p *Printer) writeLineOrSpace(parentNode *ast.Node, prevChildNode *ast.Node, nextChildNode *ast.Node) { |
| 403 | if p.shouldEmitOnSingleLine(parentNode) { |
no test coverage detected