예제 #1
0
 public Reference(Reference owner)
 {
     _owner = owner;
 }
 public MethodInvocationExpression(Reference owner, MethodInfo method, params Expression[] args)
 {
     _owner  = owner;
     _method = method;
     _args   = args;
 }
 public TypeReference(Reference owner, Type type) : base(owner)
 {
     _type = type;
 }
 public MethodInvocationExpression(Reference owner, EasyMethod method, params Expression[] args) :
     this(owner, method.MethodBuilder, args)
 {
 }