コード例 #1
0
ファイル: AD7StackFrame.cs プロジェクト: borota/JTVS
        public AD7StackFrame(AD7Engine engine, AD7Thread thread, JStackFrame threadContext)
        {
            _engine = engine;
            _thread = thread;
            _stackFrame = threadContext;

            _parameters = threadContext.Parameters.ToArray();
            _locals = threadContext.Locals.ToArray();
        }
コード例 #2
0
ファイル: AD7MemoryAddress.cs プロジェクト: borota/JTVS
 public AD7MemoryAddress(AD7Engine engine, string filename, uint lineno, JStackFrame frame)
     : this(engine, filename, lineno)
 {
     _frame = frame;
 }