Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SendOnly (0.18 sec)

  1. src/cmd/compile/internal/syntax/parser.go

    		//
    		//   <-(chan E)   =>  (<-chan E)
    		//   <-(chan<-E)  =>  (<-chan (<-E))
    
    		if _, ok := x.(*ChanType); ok {
    			// x is a channel type => re-associate <-
    			dir := SendOnly
    			t := x
    			for dir == SendOnly {
    				c, ok := t.(*ChanType)
    				if !ok {
    					break
    				}
    				dir = c.Dir
    				if dir == RecvOnly {
    					// t is type <-chan E but <-<-chan E is not permitted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. src/go/types/expr.go

    			return
    		}
    		ch, _ := u.(*Chan)
    		if ch == nil {
    			check.errorf(x, InvalidReceive, invalidOp+"cannot receive from non-channel %s", x)
    			x.mode = invalid
    			return
    		}
    		if ch.dir == SendOnly {
    			check.errorf(x, InvalidReceive, invalidOp+"cannot receive from send-only channel %s", x)
    			x.mode = invalid
    			return
    		}
    
    		x.mode = commaok
    		x.typ = ch.elem
    		check.hasCallOrRecv = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/expr.go

    			return
    		}
    		ch, _ := u.(*Chan)
    		if ch == nil {
    			check.errorf(x, InvalidReceive, invalidOp+"cannot receive from non-channel %s", x)
    			x.mode = invalid
    			return
    		}
    		if ch.dir == SendOnly {
    			check.errorf(x, InvalidReceive, invalidOp+"cannot receive from send-only channel %s", x)
    			x.mode = invalid
    			return
    		}
    		x.mode = commaok
    		x.typ = ch.elem
    		check.hasCallOrRecv = true
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
Back to top