Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for funcIdent (0.12 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/testinggoroutine/util.go

    		return false
    	}
    	if f.Type().(*types.Signature).Recv() == nil {
    		return false
    	}
    	for _, n := range names {
    		if f.Name() == n {
    			return true
    		}
    	}
    	return false
    }
    
    func funcIdent(fun ast.Expr) *ast.Ident {
    	switch fun := astutil.Unparen(fun).(type) {
    	case *ast.IndexExpr, *ast.IndexListExpr:
    		x, _, _, _ := typeparams.UnpackIndexExpr(fun) // necessary?
    		id, _ := x.(*ast.Ident)
    		return id
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/testinggoroutine/testinggoroutine.go

    func goAsyncCall(info *types.Info, goStmt *ast.GoStmt, toDecl func(*types.Func) *ast.FuncDecl) *asyncCall {
    	call := goStmt.Call
    
    	fun := astutil.Unparen(call.Fun)
    	if id := funcIdent(fun); id != nil {
    		if lit := funcLitInScope(id); lit != nil {
    			return &asyncCall{region: lit, async: goStmt, scope: nil, fun: fun}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top