cmd/doc: show the package clause always

If no writes to the package buffer happen, then the package clause
does not get printed. This is a bug for cases where a file just contains
the package clause.

We fix this by separating the printing of package clause to a new
function and calling it from (*pkgBuffer).Write as well as (*Package).flush.

Updates #31457

Change-Id: Ia3bd0ea3963274c460a45d1e37fafc6ee0a197f0
Reviewed-on: https://go-review.googlesource.com/c/go/+/206128
Run-TryBot: Agniva De Sarker <agniva.quicksilver@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Rob Pike <r@golang.org>
This commit is contained in:
Agniva De Sarker 2019-11-11 21:16:18 +05:30 committed by Agniva De Sarker
parent 194ae3236d
commit d22b5735e7
3 changed files with 16 additions and 2 deletions

View file

@ -211,6 +211,13 @@ var tests = []test{
`func \(unexportedType\)`,
},
},
// Package with just the package declaration. Issue 31457.
{
"only package declaration",
[]string{"-all", p + "/nested/empty"},
[]string{`package empty .*import`},
nil,
},
// Package dump -short
{
"full package with -short",