go/ast.CommentGroup.End (method)

9 uses

	go/ast (current package)
		ast.go#L81: func (g *CommentGroup) End() token.Pos { return g.List[len(g.List)-1].End() }
		commentmap.go#L95: 		r.end = r.fset.Position(r.comment.End())
		import.go#L130: 		if g.End() >= end {

	go/doc
		example.go#L316: 		if body.Pos() <= c.Pos() && c.End() <= body.End() {
		example.go#L443: 		if cg.End() > end {

	go/printer
		printer.go#L1097: 			if e := com.End(); e > end {
		printer.go#L1104: 		for i < len(comments) && comments[i].End() < beg {

	golang.org/x/pkgsite/internal/godoc/internal/doc
		example.go#L250: 		if body.Pos() <= c.Pos() && c.End() <= body.End() {
		example.go#L560: 		if cg.End() > end {