Esempio n. 1
0
 public StackFrame(string pack, string file, int l, P5Code code,
                   Opcode.ContextValues cxt, bool eval)
 {
     Package = pack;
     File = file;
     Line = l;
     Code = code;
     Context = cxt;
     IsEval = eval;
 }
 public P5ArrayAssignmentBinder(Runtime runtime, Opcode.ContextValues cxt, bool common)
 {
     Runtime = runtime;
     Context = cxt;
     Common = common;
 }