type go/ast.SendStmt
12 uses
go/ast (current package)
ast.go#L650: SendStmt struct {
ast.go#L782: func (s *SendStmt) Pos() token.Pos { return s.Chan.Pos() }
ast.go#L809: func (s *SendStmt) End() token.Pos { return s.Value.End() }
ast.go#L868: func (*SendStmt) stmtNode() {}
walk.go#L185: case *SendStmt:
go/parser
parser.go#L1971: return &ast.SendStmt{Chan: x[0], Arrow: arrow, Value: y}, false
parser.go#L2290: comm = &ast.SendStmt{Chan: lhs[0], Arrow: arrow, Value: rhs}
go/printer
nodes.go#L1384: 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#L462: case *ast.SendStmt:
stmt.go#L811: case nil, *ast.SendStmt: