Refactor: Put the code window stuff in its own file
This commit is contained in:
parent
074c946d20
commit
fa84bf7ffc
3 changed files with 85 additions and 46 deletions
|
|
@ -121,5 +121,5 @@ class DebugAdapterConnection( object ):
|
|||
message[ 'message' ] ) )
|
||||
elif message[ 'type' ] == 'event':
|
||||
method = 'OnEvent_' + message[ 'event' ]
|
||||
if method in dir( self._handler ) and getattr( self._handler, method ):
|
||||
if method in dir( self._handler ):
|
||||
getattr( self._handler, method )( message )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue