예제 #1
0
파일: Emitter.cs 프로젝트: m9ra/ServeRick
        public Instruction ResponseCall(string methodName, Instruction[] args)
        {
            var thisObj = new ResponseInstruction();
            var method  = getResponseMethod(methodName);

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