Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 105 for typexpr (0.24 sec)

  1. src/cmd/compile/internal/types2/expr.go

    	check.rawExpr(T, x, e, nil, false)
    	check.exclude(x, 1<<novalue|1<<builtin|1<<typexpr)
    	check.singleValue(x)
    }
    
    // genericExpr is like expr but the result may also be generic.
    func (check *Checker) genericExpr(x *operand, e syntax.Expr) {
    	check.rawExpr(nil, x, e, nil, true)
    	check.exclude(x, 1<<novalue|1<<builtin|1<<typexpr)
    	check.singleValue(x)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/index.go

    	// x may be generic
    
    	switch x.mode {
    	case invalid:
    		check.use(e.Index)
    		return false
    
    	case typexpr:
    		// type instantiation
    		x.mode = invalid
    		// TODO(gri) here we re-evaluate e.X - try to avoid this
    		x.typ = check.varType(e)
    		if isValid(x.typ) {
    			x.mode = typexpr
    		}
    		return false
    
    	case value:
    		if sig, _ := under(x.typ).(*Signature); sig != nil && sig.TypeParams().Len() > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. src/go/types/index.go

    	// x may be generic
    
    	switch x.mode {
    	case invalid:
    		check.use(e.Indices...)
    		return false
    
    	case typexpr:
    		// type instantiation
    		x.mode = invalid
    		// TODO(gri) here we re-evaluate e.X - try to avoid this
    		x.typ = check.varType(e.Orig)
    		if isValid(x.typ) {
    			x.mode = typexpr
    		}
    		return false
    
    	case value:
    		if sig, _ := under(x.typ).(*Signature); sig != nil && sig.TypeParams().Len() > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:05 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/signature.go

    	// record the type for ...T.
    	if variadic {
    		last := params[len(params)-1]
    		last.typ = &Slice{elem: last.typ}
    		check.recordTypeAndValue(list[len(list)-1].Type, typexpr, last.typ, nil)
    	}
    
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. src/go/types/signature.go

    	// record the type for ...T.
    	if variadic {
    		last := params[len(params)-1]
    		last.typ = &Slice{elem: last.typ}
    		check.recordTypeAndValue(list.List[len(list.List)-1].Type, typexpr, last.typ, nil)
    	}
    
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api.go

    func (tv TypeAndValue) IsVoid() bool {
    	return tv.mode == novalue
    }
    
    // IsType reports whether the corresponding expression specifies a type.
    func (tv TypeAndValue) IsType() bool {
    	return tv.mode == typexpr
    }
    
    // IsBuiltin reports whether the corresponding expression denotes
    // a (possibly parenthesized) built-in function.
    func (tv TypeAndValue) IsBuiltin() bool {
    	return tv.mode == builtin
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. src/go/types/api.go

    func (tv TypeAndValue) IsVoid() bool {
    	return tv.mode == novalue
    }
    
    // IsType reports whether the corresponding expression specifies a type.
    func (tv TypeAndValue) IsType() bool {
    	return tv.mode == typexpr
    }
    
    // IsBuiltin reports whether the corresponding expression denotes
    // a (possibly parenthesized) built-in function.
    func (tv TypeAndValue) IsBuiltin() bool {
    	return tv.mode == builtin
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/decl.go

    		if i > 0 {
    			s += "->"
    		}
    		s += p.Name()
    	}
    	return s
    }
    
    // objDecl type-checks the declaration of obj in its respective (file) environment.
    // For the meaning of def, see Checker.definedType, in typexpr.go.
    func (check *Checker) objDecl(obj Object, def *TypeName) {
    	if check.conf.Trace && obj.Type() == nil {
    		if check.indent == 0 {
    			fmt.Println() // empty line between top-level objects for readability
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/stmt.go

    		switch x.mode {
    		default:
    			if kind == statement {
    				return
    			}
    			msg = "is not used"
    			code = UnusedExpr
    		case builtin:
    			msg = "must be called"
    			code = UncalledBuiltin
    		case typexpr:
    			msg = "is not an expression"
    			code = NotAnExpr
    		}
    		check.errorf(&x, code, "%s %s", &x, msg)
    
    	case *syntax.SendStmt:
    		var ch, val operand
    		check.expr(nil, &ch, s.Chan)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. src/go/types/decl.go

    		if i > 0 {
    			s += "->"
    		}
    		s += p.Name()
    	}
    	return s
    }
    
    // objDecl type-checks the declaration of obj in its respective (file) environment.
    // For the meaning of def, see Checker.definedType, in typexpr.go.
    func (check *Checker) objDecl(obj Object, def *TypeName) {
    	if check.conf._Trace && obj.Type() == nil {
    		if check.indent == 0 {
    			fmt.Println() // empty line between top-level objects for readability
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top