go/ast.IndexExpr.Lbrack (field)

6 uses

	go/ast (current package)
		ast.go#L336: 		Lbrack token.Pos // position of "["

	go/parser
		parser.go#L1258: 	return &ast.IndexExpr{X: x, Lbrack: lbrack, Index: index[0], Rbrack: rbrack}

	go/printer
		nodes.go#L833: 		p.print(x.Lbrack, token.LBRACK)

	golang.org/x/pkgsite/internal/godoc
		encode_ast.gen.go#L2080: 	if x.Lbrack != 0 {
		encode_ast.gen.go#L2082: 		e.EncodeInt(int64(x.Lbrack))
		encode_ast.gen.go#L2115: 			x.Lbrack = token.Pos(d.DecodeInt())