Ejemplo n.º 1
0
 public MethodInvocationExpression(Reference owner, MethodInfo method, params Expression[] args)
 {
     _owner  = owner;
     _method = method;
     _args   = args;
 }
Ejemplo n.º 2
0
 public MethodInvocationExpression(Reference owner, EasyMethod method, params Expression[] args) :
     this(owner, method.MethodBuilder, args)
 {
 }
Ejemplo n.º 3
0
 public TypeReference(Reference owner, Type type) : base(owner)
 {
     _type = type;
 }
Ejemplo n.º 4
0
 public Reference(Reference owner)
 {
     this._owner = SelfReference.Self;
     this._owner = owner;
 }
Ejemplo n.º 5
0
 public Reference()
 {
     this._owner = SelfReference.Self;
 }
Ejemplo n.º 6
0
 public AssignStatement(Reference target, Expression expression)
 {
     _target     = target;
     _expression = expression;
 }