Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for NewConvExpr (0.16 sec)

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

    		return n
    	}
    
    	op, why := assignOp(n.Type(), t)
    	if op == ir.OXXX {
    		base.Errorf("cannot use %L as type %v in %s%s", n, t, context(), why)
    		op = ir.OCONV
    	}
    
    	r := ir.NewConvExpr(base.Pos, op, t, n)
    	r.SetTypecheck(1)
    	r.SetImplicit(true)
    	return r
    }
    
    // Is type src assignment compatible to type dst?
    // If so, return op code to use in conversion.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
Back to top