go/ast.SliceExpr.High (field)

11 uses

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

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

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

	go/types
		exprstring.go#L84: 		if x.High != nil {
		exprstring.go#L85: 			WriteExpr(buf, x.High)
		index.go#L212: 		check.use(e.Low, e.High, e.Max)
		index.go#L277: 	if e.Slice3 && (e.High == nil || e.Max == nil) {
		index.go#L285: 	for i, expr := range []ast.Expr{e.Low, e.High, e.Max} {
		index.go#L319: 					at := []ast.Expr{e.Low, e.High, e.Max}[i+1+j]