go/ast.Ellipsis.Elt (field)

13 uses

	go/ast (current package)
		ast.go#L298: 		Elt      Expr      // ellipsis element type (parameter lists only); or nil
		ast.go#L519: 	if x.Elt != nil {
		ast.go#L520: 		return x.Elt.End()
		walk.go#L94: 		if n.Elt != nil {
		walk.go#L95: 			Walk(v, n.Elt)

	go/parser
		parser.go#L716: 	return &ast.Ellipsis{Ellipsis: pos, Elt: elt}

	go/printer
		nodes.go#L991: 		if x.Elt != nil {
		nodes.go#L992: 			p.expr(x.Elt)

	go/types
		expr.go#L1326: 				if ellip, _ := atyp.Len.(*ast.Ellipsis); ellip != nil && ellip.Elt == nil {
		exprstring.go#L43: 		if x.Elt != nil {
		exprstring.go#L44: 			WriteExpr(buf, x.Elt)
		signature.go#L285: 			ftype = t.Elt
		typexpr.go#L308: 		check.use(e.Elt)