1package generator
2
3import "github.com/dave/jennifer/jen"
4
5func newGroup() *jen.Group {
6	// NOTE:
7	// Group's separator field is not exported, so at this time this is the
8	// only way to get a new group w/ the separator set to \n w/o forking.
9	file := jen.NewFile("blah")
10	return file.Group
11}
12