public DelegateCallInfo(MethodDescriptor caller, AnalysisCallNode callNode, DelegateVariableNode calleeDelegate, PropGraphNodeDescriptor receiver, IList <PropGraphNodeDescriptor> arguments, VariableNode lhs) : base(caller, callNode, receiver, arguments, lhs) { this.Delegate = calleeDelegate; }
public DelegateCallInfo(DelegateCallInfo other, IEnumerable <ResolvedCallee> possibleCallees) : base(other, possibleCallees) { this.Delegate = other.Delegate; }
public DelegateCallInfo(MethodDescriptor caller, AnalysisCallNode callNode, DelegateVariableNode @delegate, IList <PropGraphNodeDescriptor> arguments, VariableNode lhs) : this(caller, callNode, @delegate, null, arguments, lhs) { }