go/ast.Comment.End (method, view implemented interface methods)

4 uses

	go/ast (current package)
		ast.go#L70: func (c *Comment) End() token.Pos { return token.Pos(int(c.Slash) + len(c.Text)) }
		ast.go#L79: func (g *CommentGroup) End() token.Pos { return g.List[len(g.List)-1].End() }

	go/doc
		reader.go#L530: 				End:  list[len(list)-1].End(),

	go/printer
		printer.go#L771: 			p.pos = p.posFor(last.End())