type go/ast.SendStmt

16 uses

	go/ast (current package)
		ast.go#L661: 	SendStmt struct {
		ast.go#L793: func (s *SendStmt) Pos() token.Pos       { return s.Chan.Pos() }
		ast.go#L820: func (s *SendStmt) End() token.Pos    { return s.Value.End() }
		ast.go#L879: func (*SendStmt) stmtNode()       {}
		walk.go#L185: 	case *SendStmt:

	go/parser
		parser.go#L1991: 		return &ast.SendStmt{Chan: x[0], Arrow: arrow, Value: y}, false
		parser.go#L2310: 			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#L464: 	case *ast.SendStmt:
		stmt.go#L801: 			case nil, *ast.SendStmt:

	golang.org/x/tools/go/ast/edge
		edge.go#L272: 	SendStmt_Chan:         info[*ast.SendStmt]("Chan"),
		edge.go#L273: 	SendStmt_Value:        info[*ast.SendStmt]("Value"),

	golang.org/x/tools/go/ast/inspector
		typeof.go#L194: 	case *ast.SendStmt:
		walk.go#L175: 	case *ast.SendStmt: