コード例 #1
0
ファイル: Runtime.cs プロジェクト: mbarbon/language-p-net
 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;
 }
コード例 #2
0
 public P5ArrayAssignmentBinder(Runtime runtime, Opcode.ContextValues cxt, bool common)
 {
     Runtime = runtime;
     Context = cxt;
     Common = common;
 }