···5656 commentInfo() *comments
5757}
58585959+// Name describes the type of n.
6060+func Name(n Node) string {
6161+ s := fmt.Sprintf("%T", n)
6262+ return strings.ToLower(s[strings.Index(s, "ast.")+4:])
6363+}
6464+5965func getPos(n Node) token.Pos {
6066 p := n.pos()
6167 if p == nil {