Skip to content

Commit f94d855

Browse files
committed
go/printer: remove leftover code from type lists
The prev var is set to nil in every loop iteration so the condition to prevent a line break is never true. Functionality originally added in CL 273226 and removed in CL 359135.
1 parent f77bba4 commit f94d855

File tree

1 file changed

+3
-17
lines changed

1 file changed

+3
-17
lines changed

src/go/printer/nodes.go

+3-17
Original file line numberDiff line numberDiff line change
@@ -600,33 +600,19 @@ func (p *printer) fieldList(fields *ast.FieldList, isStruct, isIncomplete bool)
600600
} else { // interface
601601

602602
var line int
603-
var prev *ast.Ident // previous "type" identifier
604603
for i, f := range list {
605-
var name *ast.Ident // first name, or nil
606-
if len(f.Names) > 0 {
607-
name = f.Names[0]
608-
}
609604
if i > 0 {
610-
// don't do a line break (min == 0) if we are printing a list of types
611-
// TODO(gri) this doesn't work quite right if the list of types is
612-
// spread across multiple lines
613-
min := 1
614-
if prev != nil && name == prev {
615-
min = 0
616-
}
617-
p.linebreak(p.lineFor(f.Pos()), min, ignore, p.linesFrom(line) > 0)
605+
p.linebreak(p.lineFor(f.Pos()), 1, ignore, p.linesFrom(line) > 0)
618606
}
619607
p.setComment(f.Doc)
620608
p.recordLine(&line)
621-
if name != nil {
622-
// method
609+
if len(f.Names) > 0 {
610+
name := f.Names[0] // method name
623611
p.expr(name)
624612
p.signature(f.Type.(*ast.FuncType)) // don't print "func"
625-
prev = nil
626613
} else {
627614
// embedded interface
628615
p.expr(f.Type)
629-
prev = nil
630616
}
631617
p.setComment(f.Comment)
632618
}

0 commit comments

Comments
 (0)