go/ast.CaseClause.List (field)
10 uses
go/ast (current package)
ast.go#L719: List []Expr // list of expressions or types; nil means default case
walk.go#L224: walkList(v, n.List)
go/parser
parser.go#L2188: return &ast.CaseClause{Case: pos, List: list, Colon: colon, Body: body}
resolver.go#L345: r.walkExprs(n.List)
go/printer
nodes.go#L1467: if s.List != nil {
nodes.go#L1469: p.exprList(s.Pos(), s.List, 1, 0, s.Colon, false)
go/types
return.go#L93: if cc.List == nil {
stmt.go#L133: if len(c.List) == 0 {
stmt.go#L671: check.caseValues(&x, clause.List, seen)
stmt.go#L763: T := check.caseTypes(sx, clause.List, seen)