Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for IsField (0.19 sec)

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

    			}
    			continue
    		}
    
    		// struct fields, type-associated and interface methods
    		// have no parent scope
    		wantParent := true
    		switch obj := obj.(type) {
    		case *Var:
    			if obj.IsField() {
    				wantParent = false
    			}
    		case *Func:
    			if obj.Type().(*Signature).Recv() != nil { // method
    				wantParent = false
    			}
    		}
    
    		gotParent := obj.Parent() != nil
    		switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  2. src/go/types/api_test.go

    			}
    			continue
    		}
    
    		// struct fields, type-associated and interface methods
    		// have no parent scope
    		wantParent := true
    		switch obj := obj.(type) {
    		case *Var:
    			if obj.IsField() {
    				wantParent = false
    			}
    		case *Func:
    			if obj.Signature().Recv() != nil { // method
    				wantParent = false
    			}
    		}
    
    		gotParent := obj.Parent() != nil
    		switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  3. src/main/webapp/css/font-awesome.min.css

    content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  4. src/main/webapp/css/admin/font-awesome.min.css

    content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  5. src/runtime/mprof.go

    //
    //go:yeswritebarrierrec
    func tryRecordGoroutineProfileWB(gp1 *g) {
    	if getg().m.p.ptr() == nil {
    		throw("no P available, write barriers are forbidden")
    	}
    	tryRecordGoroutineProfile(gp1, nil, osyield)
    }
    
    // tryRecordGoroutineProfile ensures that gp1 has the appropriate representation
    // in the current goroutine profile: either that it should not be profiled, or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top