Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for operandString (0.2 sec)

  1. src/go/types/operand.go

    // commaerr   <expr> (               <mode>       of type <typ>)
    //
    // cgofunc    <expr> (<untyped kind> <mode>                    )
    // cgofunc    <expr> (               <mode>       of type <typ>)
    func operandString(x *operand, qf Qualifier) string {
    	// special-case nil
    	if isTypes2 {
    		if x.mode == nilvalue {
    			switch x.typ {
    			case nil, Typ[Invalid]:
    				return "nil (with invalid type)"
    			case Typ[UntypedNil]:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/operand.go

    // commaerr   <expr> (               <mode>       of type <typ>)
    //
    // cgofunc    <expr> (<untyped kind> <mode>                    )
    // cgofunc    <expr> (               <mode>       of type <typ>)
    func operandString(x *operand, qf Qualifier) string {
    	// special-case nil
    	if isTypes2 {
    		if x.mode == nilvalue {
    			switch x.typ {
    			case nil, Typ[Invalid]:
    				return "nil (with invalid type)"
    			case Typ[UntypedNil]:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top