(list []*ast.Node, sourceFile *ast.SourceFile)
| 561 | } |
| 562 | |
| 563 | func isNodeArrayMultiLine(list []*ast.Node, sourceFile *ast.SourceFile) bool { |
| 564 | if len(list) == 0 { |
| 565 | return false |
| 566 | } |
| 567 | return !printer.PositionsAreOnSameLine(list[0].Pos(), list[len(list)-1].End(), sourceFile) |
| 568 | } |
no test coverage detected