type go/ast.IndexListExpr

23 uses

	go/ast (current package)
		ast.go#L346: 	IndexListExpr struct {
		ast.go#L496: func (x *IndexListExpr) Pos() token.Pos  { return x.X.Pos() }
		ast.go#L530: func (x *IndexListExpr) End() token.Pos  { return x.Rbrack + 1 }
		ast.go#L562: func (*IndexListExpr) exprNode()  {}
		walk.go#L119: 	case *IndexListExpr:

	go/doc
		reader.go#L39: 	case *ast.IndexListExpr:
		reader.go#L132: 	case *ast.IndexListExpr:

	go/internal/typeparams
		typeparams.go#L24: 		return &ast.IndexListExpr{
		typeparams.go#L38: 	*ast.IndexListExpr
		typeparams.go#L44: 		return &IndexExpr{e, &ast.IndexListExpr{
		typeparams.go#L50: 	case *ast.IndexListExpr:

	go/parser
		parser.go#L1613: 	case *ast.IndexListExpr:
		parser.go#L1705: 			case *ast.IndexExpr, *ast.IndexListExpr:
		resolver.go#L557: 	case *ast.IndexListExpr:

	go/printer
		nodes.go#L890: 	case *ast.IndexListExpr:

	go/types
		call.go#L383: 			case *ast.IndexExpr, *ast.IndexListExpr:
		check.go#L525: 	case *ast.IndexListExpr:
		expr.go#L1538: 	case *ast.IndexExpr, *ast.IndexListExpr:
		exprstring.go#L70: 	case *ast.IndexExpr, *ast.IndexListExpr:
		resolver.go#L516: 	case *ast.IndexExpr, *ast.IndexListExpr:
		struct.go#L192: 	case *ast.IndexListExpr:
		typexpr.go#L276: 	case *ast.IndexExpr, *ast.IndexListExpr:

	golang.org/x/tools/internal/typeparams
		typeparams_go118.go#L16: type IndexListExpr = ast.IndexListExpr