Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for printfWrapper (0.14 sec)

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

    	}
    	findPrintfLike(pass, res)
    	checkCall(pass)
    	return res, nil
    }
    
    type printfWrapper struct {
    	obj     *types.Func
    	fdecl   *ast.FuncDecl
    	format  *types.Var
    	args    *types.Var
    	callers []printfCaller
    	failed  bool // if true, not a printf wrapper
    }
    
    type printfCaller struct {
    	w    *printfWrapper
    	call *ast.CallExpr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
Back to top