()
| 806 | } |
| 807 | |
| 808 | func (p *printer) printNewlinePastLineLimit() bool { |
| 809 | if p.currentLineLength() < p.options.LineLimit { |
| 810 | return false |
| 811 | } |
| 812 | p.print("\n") |
| 813 | p.printIndent() |
| 814 | return true |
| 815 | } |
| 816 | |
| 817 | func (p *printer) printSpaceBeforeOperator(next js_ast.OpCode) { |
| 818 | if p.prevOpEnd == len(p.js) { |
no test coverage detected