Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 31 of 31 for has_func (0.36 sec)

  1. src/cmd/compile/internal/walk/expr.go

    		return walkCall(n, init)
    
    	case ir.OAS, ir.OASOP:
    		return walkAssign(init, n)
    
    	case ir.OAS2:
    		n := n.(*ir.AssignListStmt)
    		return walkAssignList(init, n)
    
    	// a,b,... = fn()
    	case ir.OAS2FUNC:
    		n := n.(*ir.AssignListStmt)
    		return walkAssignFunc(init, n)
    
    	// x, y = <-c
    	// order.stmt made sure x is addressable or blank.
    	case ir.OAS2RECV:
    		n := n.(*ir.AssignListStmt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top