go/ast.Comment.End (method)

4 uses

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

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

	golang.org/x/pkgsite/internal/godoc/internal/doc
		reader.go#L466: 				End:  list[len(list)-1].End(),