Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for LookupFieldOrMethod (0.53 sec)

  1. src/go/types/api_test.go

    }
    
    func TestLookupFieldOrMethodOnNil(t *testing.T) {
    	// LookupFieldOrMethod on a nil type is expected to produce a run-time panic.
    	defer func() {
    		const want = "LookupFieldOrMethod on nil type"
    		p := recover()
    		if s, ok := p.(string); !ok || s != want {
    			t.Fatalf("got %v, want %s", p, want)
    		}
    	}()
    	LookupFieldOrMethod(nil, false, nil, "")
    }
    
    func TestLookupFieldOrMethod(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  2. src/go/types/builtins.go

    			check.use(arg0)
    			return
    		}
    
    		check.expr(nil, x, selx.X)
    		if x.mode == invalid {
    			return
    		}
    
    		base := derefStructPtr(x.typ)
    		sel := selx.Sel.Name
    		obj, index, indirect := lookupFieldOrMethod(base, false, check.pkg, sel, false)
    		switch obj.(type) {
    		case nil:
    			check.errorf(x, MissingFieldOrMethod, invalidArg+"%s has no single field %s", base, sel)
    			return
    		case *Func:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  3. src/go/types/unify.go

    		if xi != nil {
    			// All xi methods must exist in y and corresponding signatures must unify.
    			xmethods := xi.typeSet().methods
    			for _, xm := range xmethods {
    				obj, _, _ := LookupFieldOrMethod(y, false, xm.pkg, xm.name)
    				if ym, _ := obj.(*Func); ym == nil || !u.nify(xm.typ, ym.typ, exact, p) {
    					return false
    				}
    			}
    			return true
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/builtins.go

    			check.use(arg0)
    			return
    		}
    
    		check.expr(nil, x, selx.X)
    		if x.mode == invalid {
    			return
    		}
    
    		base := derefStructPtr(x.typ)
    		sel := selx.Sel.Value
    		obj, index, indirect := lookupFieldOrMethod(base, false, check.pkg, sel, false)
    		switch obj.(type) {
    		case nil:
    			check.errorf(x, MissingFieldOrMethod, invalidArg+"%s has no single field %s", base, sel)
    			return
    		case *Func:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/unify.go

    		if xi != nil {
    			// All xi methods must exist in y and corresponding signatures must unify.
    			xmethods := xi.typeSet().methods
    			for _, xm := range xmethods {
    				obj, _, _ := LookupFieldOrMethod(y, false, xm.pkg, xm.name)
    				if ym, _ := obj.(*Func); ym == nil || !u.nify(xm.typ, ym.typ, exact, p) {
    					return false
    				}
    			}
    			return true
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top