Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for StaticCalleeName (0.15 sec)

  1. src/cmd/compile/internal/typecheck/stmt.go

    	default:
    		base.Fatalf("unexpected call op: %v", call.Op())
    
    	case ir.OCALLFUNC:
    		call := call.(*ir.CallExpr)
    
    		// If the callee is a named function, link to the original callee.
    		if wrapped := ir.StaticCalleeName(call.Fun); wrapped != nil {
    			wrapperFn.WrappedFunc = wrapped.Func
    		}
    
    		visit(&call.Fun)
    		visitList(call.Args)
    
    	case ir.OCALLINTER:
    		call := call.(*ir.CallExpr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
Back to top