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