Exemplo n.º 1
0
 public MethodCallValue(IMethodRef method, CallingConvention
     callingConvention, IComparisonOperandAnchor parent, IComparisonOperand[] args) :
         base(parent)
 {
     _method = method;
     _args = args;
     _callingConvention = callingConvention;
 }
Exemplo n.º 2
0
		public MethodCallValue(IMethodRef method, Db4objects.Db4o.Instrumentation.Api.CallingConvention
			 callingConvention, IComparisonOperandAnchor parent, IComparisonOperand[] args) : 
			base(parent)
		{
			_method = method;
			_args = args;
			_callingConvention = callingConvention;
		}
Exemplo n.º 3
0
 public MethodCallValue(IMethodRef method, Db4objects.Db4o.Instrumentation.Api.CallingConvention
                        callingConvention, IComparisonOperandAnchor parent, IComparisonOperand[] args) :
     base(parent)
 {
     _method            = method;
     _args              = args;
     _callingConvention = callingConvention;
 }
Exemplo n.º 4
0
 public MethodCallValue(IMethodRef method, CallingConvention
                        callingConvention, IComparisonOperandAnchor parent, IComparisonOperand[] args) :
     base(parent)
 {
     _method            = method;
     _args              = args;
     _callingConvention = callingConvention;
 }
Exemplo n.º 5
0
		public FieldValue(IComparisonOperandAnchor root, IFieldRef field) : base(root)
		{
			_field = field;
		}
 private FieldValue NewFieldValue(IComparisonOperandAnchor anchor, string name, Type type)
 {
     return new FieldValue(anchor,
         new MockFieldRef(name,
             new MockTypeRef(type)));
 }
 protected ComparisonOperandDescendant(IComparisonOperandAnchor _parent)
 {
     this._parent = _parent;
 }
Exemplo n.º 8
0
		protected ComparisonOperandDescendant(IComparisonOperandAnchor _parent)
		{
			this._parent = _parent;
		}
Exemplo n.º 9
0
 private void PushFieldValue(IComparisonOperandAnchor value, FieldReference field)
 {
     Push(new FieldValue(value, _referenceProvider.ForCecilField(field)));
 }
 private FieldValue NewFieldValue(IComparisonOperandAnchor anchor, string name, Type type)
 {
     return(new FieldValue(anchor,
                           new MockFieldRef(name,
                                            new MockTypeRef(type))));
 }
Exemplo n.º 11
0
 public FieldValue(IComparisonOperandAnchor root, IFieldRef field) : base(root)
 {
     _field = field;
 }