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

9 uses

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

	go/doc
		example.go#L270: 		if body.Pos() <= c.Pos() && c.End() <= body.End() {
		example.go#L538: 			prevEnd = imp.Comment.End()
		example.go#L605: 		if cg.End() > end {

	go/printer
		printer.go#L744: 			p.posFor(p.comment.End()+1) == next {
		printer.go#L1115: 			if e := com.End(); e > end {
		printer.go#L1122: 		for i < len(comments) && comments[i].End() < beg {