Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for rememberUntyped (0.27 sec)

  1. src/go/types/check.go

    func (check *Checker) isBrokenAlias(alias *TypeName) bool {
    	assert(!check.conf._EnableAlias)
    	return check.brokenAliases[alias]
    }
    
    func (check *Checker) rememberUntyped(e ast.Expr, lhs bool, mode operandMode, typ *Basic, val constant.Value) {
    	m := check.untyped
    	if m == nil {
    		m = make(map[ast.Expr]exprInfo)
    		check.untyped = m
    	}
    	m[e] = exprInfo{lhs, mode, typ, val}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/check.go

    func (check *Checker) isBrokenAlias(alias *TypeName) bool {
    	assert(!check.conf.EnableAlias)
    	return check.brokenAliases[alias]
    }
    
    func (check *Checker) rememberUntyped(e syntax.Expr, lhs bool, mode operandMode, typ *Basic, val constant.Value) {
    	m := check.untyped
    	if m == nil {
    		m = make(map[syntax.Expr]exprInfo)
    		check.untyped = m
    	}
    	m[e] = exprInfo{lhs, mode, typ, val}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top