mirror of
https://github.com/golang/go
synced 2024-11-05 17:36:15 -07:00
bce9606b3f
https://golang.org/cl/45117 doesn't handle comments which don't belong to any declarations. This CL addresses it. Fixes golang/go#20627 Change-Id: I81c7cdc070efc6cb9e9f38101d7b2b8909916ba6 Reviewed-on: https://go-review.googlesource.com/45190 Reviewed-by: Alan Donovan <adonovan@google.com>
63 lines
819 B
Plaintext
63 lines
819 B
Plaintext
// Code generated by golang.org/x/tools/cmd/bundle. DO NOT EDIT.
|
|
// $ bundle
|
|
|
|
// The package doc comment
|
|
//
|
|
|
|
package dest
|
|
|
|
import (
|
|
"fmt"
|
|
. "fmt"
|
|
_ "fmt"
|
|
renamedfmt "fmt"
|
|
renamedfmt2 "fmt"
|
|
|
|
"domain.name/importdecl"
|
|
)
|
|
|
|
// init functions are not renamed
|
|
func init() { prefixfoo() }
|
|
|
|
// Type S.
|
|
type prefixS struct {
|
|
prefixt
|
|
u int
|
|
} /* multi-line
|
|
comment
|
|
*/
|
|
|
|
// non-associated comment
|
|
|
|
/*
|
|
non-associated comment2
|
|
*/
|
|
|
|
// Function bar.
|
|
func prefixbar(s *prefixS) {
|
|
fmt.Println(s.prefixt, s.u) // comment inside function
|
|
}
|
|
|
|
// file-end comment
|
|
|
|
type prefixt int // type1
|
|
|
|
// const1
|
|
const prefixc = 1 // const2
|
|
|
|
func prefixfoo() {
|
|
fmt.Println(importdecl.F())
|
|
}
|
|
|
|
// zinit
|
|
const (
|
|
prefixz1 = iota // z1
|
|
prefixz2 // z2
|
|
) // zend
|
|
|
|
func prefixbaz() {
|
|
renamedfmt.Println()
|
|
renamedfmt2.Println()
|
|
Println()
|
|
}
|