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

3 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#L516: 				End:  list[len(list)-1].End(),