badetitou / Pharo-LanguageServer

A Language Server Protocol implementation in Pharo
GNU General Public License v3.0
30 stars 6 forks source link

removed debugSession := aDebugSession. by mistake #7

Closed jmari closed 2 years ago

jmari commented 2 years ago

I removed the asignation of debugSession by mistake and now is not working

on method DAPServer >> debugSession: aDebugSession

'DAP debugSession:' record.
debugSession := aDebugSession.
self
    sendMessage:
        (DAPStoppedEvent new
            seq: self nextSeq;
            description: aDebugSession exception printString;
            threadId: self threads associations anyOne key;
            reason: 'exception';
            yourself)
jmari commented 2 years ago

sorry I think you have already solved it ...