コード例 #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
ファイル: HTMLValues.cs プロジェクト: m9ra/ServeRick
 public override void VisitResponse(ResponseInstruction x)
 {
     emit(_compiler.ResponseParameter);
 }