type go/ast.SendStmt
12 uses
go/ast (current package)
ast.go#L645: SendStmt struct {
ast.go#L776: func (s *SendStmt) Pos() token.Pos { return s.Chan.Pos() }
ast.go#L803: func (s *SendStmt) End() token.Pos { return s.Value.End() }
ast.go#L863: func (*SendStmt) stmtNode() {}
walk.go#L209: case *SendStmt:
go/parser
parser.go#L1953: return &ast.SendStmt{Chan: x[0], Arrow: arrow, Value: y}, false
parser.go#L2292: comm = &ast.SendStmt{Chan: lhs[0], Arrow: arrow, Value: rhs}
go/printer
nodes.go#L1328: case *ast.SendStmt:
go/types
return.go#L22: case *ast.BadStmt, *ast.DeclStmt, *ast.EmptyStmt, *ast.SendStmt,
return.go#L116: *ast.SendStmt, *ast.IncDecStmt, *ast.AssignStmt, *ast.GoStmt,
stmt.go#L414: case *ast.SendStmt:
stmt.go#L767: case nil, *ast.SendStmt: