Esempio n. 1
0
        private void OnXdebugBreakpointHit(XDebugEventArgs e)
        {
            this.PrepareFileForAccess(e.CurrentLocation.filename);
            this.SetActiveFileAndLine(e.CurrentLocation);

            List <StackEntry> callstack = _client.GetCallStack(-1);

            _callstackFrm.setCallstack(callstack);
        }
Esempio n. 2
0
        private void OnXdebugBreakpointHit(XDebugEventArgs e)
        {
            this.PrepareFileForAccess(e.CurrentLocation.filename);
            this.SetActiveFileAndLine(e.CurrentLocation);

            List <StackEntry> callstack = _client.GetCallStack(-1);

            _callstackFrm.setCallstack(callstack);
            // local and global context
            List <Property> ctx = _client.GetContext("0");

            _localContextFrm.LoadPropertyList(ctx);
            ctx = _client.GetContext("1");
            _globalContextFrm.LoadPropertyList(ctx);
        }