go/ast.SliceExpr.Low (field)
8 uses
go/ast (current package)
ast.go#L345: Low Expr // begin of slice range; or nil
walk.go#L119: if n.Low != nil {
walk.go#L120: Walk(v, n.Low)
go/parser
parser.go#L1255: return &ast.SliceExpr{X: x, Lbrack: lbrack, Low: index[0], High: index[1], Max: index[2], Slice3: slice3, Rbrack: rbrack}
go/printer
nodes.go#L841: indices := []ast.Expr{x.Low, x.High}
golang.org/x/pkgsite/internal/godoc
encode_ast.gen.go#L2822: if x.Low != nil {
encode_ast.gen.go#L2824: e.EncodeAny(x.Low)
encode_ast.gen.go#L2867: x.Low = d.DecodeAny().(ast.Expr)
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |