Allow deleting watches and improve expansion

Now scopes and watch results can be expanded/collapsed. Locals still
default to being expanded, but watches do not.
This commit is contained in:
Ben Jackson 2018-05-27 18:19:07 +01:00
commit 3f73d1c2f8
4 changed files with 71 additions and 26 deletions

View file

@ -183,6 +183,9 @@ class DebugSession( object ):
def AddWatch( self, expression ):
self._variablesView.AddWatch( self._currentFrame, expression )
def DeleteWatch( self ):
self._variablesView.DeleteWatch()
def GoToFrame( self ):
self._stackTraceView.GoToFrame()