go/ast.ReturnStmt.Return (field)

7 uses

	go/ast (current package)
		ast.go#L666: 		Return  token.Pos // position of "return" keyword
		ast.go#L765: func (s *ReturnStmt) Pos() token.Pos     { return s.Return }
		ast.go#L798: 	return s.Return + 6 // len("return")

	go/parser
		parser.go#L1802: 	return &ast.ReturnStmt{Return: pos, Results: x}

	golang.org/x/pkgsite/internal/godoc
		encode_ast.gen.go#L2533: 	if x.Return != 0 {
		encode_ast.gen.go#L2535: 		e.EncodeInt(int64(x.Return))
		encode_ast.gen.go#L2562: 			x.Return = token.Pos(d.DecodeInt())