type go/ast.IndexExpr
15 uses
go/ast (current package)
ast.go#L334: IndexExpr struct {
ast.go#L482: func (x *IndexExpr) Pos() token.Pos { return x.X.Pos() }
ast.go#L515: func (x *IndexExpr) End() token.Pos { return x.Rbrack + 1 }
ast.go#L546: func (*IndexExpr) exprNode() {}
walk.go#L113: case *IndexExpr:
go/parser
parser.go#L1258: return &ast.IndexExpr{X: x, Lbrack: lbrack, Index: index[0], Rbrack: rbrack}
parser.go#L1387: case *ast.IndexExpr:
go/printer
nodes.go#L830: case *ast.IndexExpr:
golang.org/x/pkgsite/internal/godoc
encode_ast.gen.go#L2072: func encode_ast_IndexExpr(e *codec.Encoder, x *ast.IndexExpr) {
encode_ast.gen.go#L2095: func decode_ast_IndexExpr(d *codec.Decoder, p **ast.IndexExpr) {
encode_ast.gen.go#L2101: *p = ref.(*ast.IndexExpr)
encode_ast.gen.go#L2104: var x ast.IndexExpr
encode_ast.gen.go#L2128: codec.Register(&ast.IndexExpr{},
encode_ast.gen.go#L2129: func(e *codec.Encoder, x interface{}) { encode_ast_IndexExpr(e, x.(*ast.IndexExpr)) },
encode_ast.gen.go#L2131: var x *ast.IndexExpr
![]() |
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. |