go/ast.IndexExpr.Index (field)

10 uses

	go/ast (current package)
		ast.go#L352: 		Index  Expr      // index expression
		walk.go#L95: 		Walk(v, n.Index)

	go/doc
		reader.go#L40: 		return fmt.Sprintf("%s[%s]", recvString(t.X), recvParam(t.Index))

	go/parser
		parser.go#L1349: 			Index:  &ast.BadExpr{From: opening + 1, To: closing},
		parser.go#L1541: 			Index:  &ast.BadExpr{From: rbrack, To: rbrack},
		parser.go#L1603: 		return &ast.IndexExpr{X: x, Lbrack: lbrack, Index: index[0], Rbrack: rbrack}
		parser.go#L2932: 			Index:  exprs[0],
		resolver.go#L559: 		declareExprs = []ast.Expr{typ.Index}

	go/printer
		nodes.go#L914: 		p.expr0(x.Index, depth+1)

	go/types
		index.go#L440: 			indices: []ast.Expr{e.Index},