Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for checkCopyLocksCallExpr (0.83 sec)

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

    	for _, x := range rs.Results {
    		if path := lockPathRhs(pass, x); path != nil {
    			pass.ReportRangef(x, "return copies lock value: %v", path)
    		}
    	}
    }
    
    // checkCopyLocksCallExpr detects lock copy in the arguments to a function call
    func checkCopyLocksCallExpr(pass *analysis.Pass, ce *ast.CallExpr) {
    	var id *ast.Ident
    	switch fun := ce.Fun.(type) {
    	case *ast.Ident:
    		id = fun
    	case *ast.SelectorExpr:
    		id = fun.Sel
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top