type go/ast.CommClause

18 uses

	go/ast (current package)
		ast.go#L752: 	CommClause struct {
		ast.go#L805: func (s *CommClause) Pos() token.Pos     { return s.Case }
		ast.go#L862: func (s *CommClause) End() token.Pos {
		ast.go#L891: func (*CommClause) stmtNode()     {}
		walk.go#L243: 	case *CommClause:

	go/parser
		parser.go#L2291: func (p *parser) parseCommClause() *ast.CommClause {
		parser.go#L2340: 	return &ast.CommClause{Case: pos, Comm: comm, Colon: colon, Body: body}
		resolver.go#L386: 	case *ast.CommClause:

	go/printer
		nodes.go#L1494: 	case *ast.CommClause:

	go/types
		labels.go#L252: 		case *ast.CommClause:
		return.go#L62: 			cc := s.(*ast.CommClause)
		return.go#L155: 	case *ast.CommClause:
		stmt.go#L138: 		case *ast.CommClause:
		stmt.go#L792: 			clause, _ := s.(*ast.CommClause)

	golang.org/x/tools/go/ast/edge
		edge.go#L208: 	CommClause_Body:       info[*ast.CommClause]("Body"),
		edge.go#L209: 	CommClause_Comm:       info[*ast.CommClause]("Comm"),

	golang.org/x/tools/go/ast/inspector
		typeof.go#L126: 	case *ast.CommClause:
		walk.go#L233: 	case *ast.CommClause: