go/ast.CaseClause.List (field)

8 uses

	go/ast (current package)
		ast.go#L698: 		List  []Expr    // list of expressions or types; nil means default case
		walk.go#L237: 		walkExprList(v, n.List)

	go/parser
		parser.go#L1970: 	return &ast.CaseClause{Case: pos, List: list, Colon: colon, Body: body}

	go/printer
		nodes.go#L1345: 		if s.List != nil {
		nodes.go#L1347: 			p.exprList(s.Pos(), s.List, 1, 0, s.Colon, false)

	golang.org/x/pkgsite/internal/godoc
		encode_ast.gen.go#L641: 	if x.List != nil {
		encode_ast.gen.go#L643: 		encode_slice_ast_Expr(e, x.List)
		encode_ast.gen.go#L676: 			decode_slice_ast_Expr(d, &x.List)