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

7 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#L319: 		if body.Pos() <= c.Pos() && c.End() <= body.End() {
		example.go#L446: 		if cg.End() > end {

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