Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for exprWithHint (0.13 sec)

  1. src/go/types/expr.go

    		}
    		list = append(list, x2)
    		commaOk = true
    	}
    
    	return
    }
    
    // exprWithHint typechecks expression e and initializes x with the expression value;
    // hint is the type of a composite literal element.
    // If an error occurred, x.mode is set to invalid.
    func (check *Checker) exprWithHint(x *operand, e ast.Expr, hint Type) {
    	assert(hint != nil)
    	check.rawExpr(nil, x, e, hint, false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    		}
    		list = append(list, x2)
    		commaOk = true
    	}
    
    	return
    }
    
    // exprWithHint typechecks expression e and initializes x with the expression value;
    // hint is the type of a composite literal element.
    // If an error occurred, x.mode is set to invalid.
    func (check *Checker) exprWithHint(x *operand, e syntax.Expr, hint Type) {
    	assert(hint != nil)
    	check.rawExpr(nil, x, e, hint, false)
    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