Exemple #1
0
        public Instruction ResponseCall(string methodName, Instruction[] args)
        {
            var thisObj = new ResponseInstruction();
            var method  = getResponseMethod(methodName);

            return(new MethodCallInstruction(thisObj, method.Info, args));
        }
Exemple #2
0
 public virtual void VisitResponse(ResponseInstruction x)
 {
     VisitInstruction(x);
 }
Exemple #3
0
 public override void VisitResponse(ResponseInstruction x)
 {
     emit(_compiler.ResponseParameter);
 }