Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for okforlen (0.29 sec)

  1. src/cmd/compile/internal/typecheck/universe.go

    	ir.OKForConst[types.TSTRING] = true
    
    	okforlen[types.TARRAY] = true
    	okforlen[types.TCHAN] = true
    	okforlen[types.TMAP] = true
    	okforlen[types.TSLICE] = true
    	okforlen[types.TSTRING] = true
    
    	okforeq[types.TPTR] = true
    	okforeq[types.TUNSAFEPTR] = true
    	okforeq[types.TINTER] = true
    	okforeq[types.TCHAN] = true
    	okforeq[types.TSTRING] = true
    	okforeq[types.TBOOL] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/expr.go

    	n.X = Expr(n.X)
    	n.X = DefaultLit(n.X, nil)
    	n.X = implicitstar(n.X)
    	l := n.X
    	t := l.Type()
    	if t == nil {
    		n.SetType(nil)
    		return n
    	}
    
    	var ok bool
    	if n.Op() == ir.OLEN {
    		ok = okforlen[t.Kind()]
    	} else {
    		ok = okforcap[t.Kind()]
    	}
    	if !ok {
    		base.Errorf("invalid argument %L for %v", l, n.Op())
    		n.SetType(nil)
    		return n
    	}
    
    	n.SetType(types.Types[types.TINT])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top