type go/ast.SliceExpr
15 uses
go/ast (current package)
ast.go#L342: SliceExpr struct {
ast.go#L483: func (x *SliceExpr) Pos() token.Pos { return x.X.Pos() }
ast.go#L516: func (x *SliceExpr) End() token.Pos { return x.Rbrack + 1 }
ast.go#L547: func (*SliceExpr) exprNode() {}
walk.go#L117: case *SliceExpr:
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}
parser.go#L1388: case *ast.SliceExpr:
go/printer
nodes.go#L837: case *ast.SliceExpr:
golang.org/x/pkgsite/internal/godoc
encode_ast.gen.go#L2810: func encode_ast_SliceExpr(e *codec.Encoder, x *ast.SliceExpr) {
encode_ast.gen.go#L2845: func decode_ast_SliceExpr(d *codec.Decoder, p **ast.SliceExpr) {
encode_ast.gen.go#L2851: *p = ref.(*ast.SliceExpr)
encode_ast.gen.go#L2854: var x ast.SliceExpr
encode_ast.gen.go#L2884: codec.Register(&ast.SliceExpr{},
encode_ast.gen.go#L2885: func(e *codec.Encoder, x interface{}) { encode_ast_SliceExpr(e, x.(*ast.SliceExpr)) },
encode_ast.gen.go#L2887: var x *ast.SliceExpr
 |
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. |