go/ast.SliceExpr.High (field)

11 uses

	go/ast (current package)
		ast.go#L370: 		High   Expr      // end of slice range; or nil
		walk.go#L106: 		if n.High != nil {
		walk.go#L107: 			Walk(v, n.High)

	go/parser
		parser.go#L1598: 		return &ast.SliceExpr{X: x, Lbrack: lbrack, Low: index[0], High: index[1], Max: index[2], Slice3: slice3, Rbrack: rbrack}

	go/printer
		nodes.go#L933: 		indices := []ast.Expr{x.Low, x.High}

	go/types
		exprstring.go#L86: 		if x.High != nil {
		exprstring.go#L87: 			WriteExpr(buf, x.High)
		index.go#L214: 		check.use(e.Low, e.High, e.Max)
		index.go#L279: 	if e.Slice3 && (e.High == nil || e.Max == nil) {
		index.go#L287: 	for i, expr := range []ast.Expr{e.Low, e.High, e.Max} {
		index.go#L321: 					at := []ast.Expr{e.Low, e.High, e.Max}[i+1+j]