type go/ast.SendStmt
15 uses
go/ast (current package)
ast.go#L629: SendStmt struct {
ast.go#L760: func (s *SendStmt) Pos() token.Pos { return s.Chan.Pos() }
ast.go#L787: func (s *SendStmt) End() token.Pos { return s.Value.End() }
ast.go#L847: func (*SendStmt) stmtNode() {}
walk.go#L198: case *SendStmt:
go/parser
parser.go#L1734: return &ast.SendStmt{Chan: x[0], Arrow: arrow, Value: y}, false
parser.go#L2077: comm = &ast.SendStmt{Chan: lhs[0], Arrow: arrow, Value: rhs}
go/printer
nodes.go#L1267: case *ast.SendStmt:
golang.org/x/pkgsite/internal/godoc
encode_ast.gen.go#L2749: func encode_ast_SendStmt(e *codec.Encoder, x *ast.SendStmt) {
encode_ast.gen.go#L2768: func decode_ast_SendStmt(d *codec.Decoder, p **ast.SendStmt) {
encode_ast.gen.go#L2774: *p = ref.(*ast.SendStmt)
encode_ast.gen.go#L2777: var x ast.SendStmt
encode_ast.gen.go#L2799: codec.Register(&ast.SendStmt{},
encode_ast.gen.go#L2800: func(e *codec.Encoder, x interface{}) { encode_ast_SendStmt(e, x.(*ast.SendStmt)) },
encode_ast.gen.go#L2802: var x *ast.SendStmt
 |
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. |