예제 #1
0
 protected ObjWastVariableContext(IObjWastCallable callable)
 {
     Callable = callable;
 }
예제 #2
0
 public ObjWastLocalContext(IObjWastCallable callable)
     : base(callable)
 {
 }
예제 #3
0
 public ObjWastParamContext(IObjWastCallable callable)
     : base(callable)
 {
 }
예제 #4
0
        public ObjWastCallableBodyContext(IObjWastCallable callable)
        {
            this.callable = callable;

            instructions = new List <ObjWastInstruction>();
        }
예제 #5
0
 public ObjWastResultContext(IObjWastCallable callable)
 {
     this.callable = callable;
 }