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

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