comment/format in:
authorClaus Gittinger <cg@exept.de>
Wed, 25 Jul 2012 19:20:06 +0200
changeset 11661 2bda6075f0fa
parent 11660 bf523c8f3232
child 11662 ec99e522b4c9
comment/format in: #enter:select: #middleButtonMenu #setContext:releaseInspectors: changed: #menuSpec showMore
DebugView.st
--- a/DebugView.st	Wed Jul 25 13:22:23 2012 +0200
+++ b/DebugView.st	Wed Jul 25 19:20:06 2012 +0200
@@ -12,52 +12,52 @@
 "{ Package: 'stx:libtool' }"
 
 StandardSystemView subclass:#DebugView
-	instanceVariableNames:'busy haveControl exitAction canContinue contextView codeView
-		receiverInspector contextInspector contextArray selectedContext
-		catchBlock grabber mayProceed traceView tracing bigStep
-		skipLineNr steppedContextAddress abortButton terminateButton
-		continueButton stepButton nextButton nextOverButton nextOutButton
-		sendButton returnButton restartButton exclusive inspecting
-		nChainShown inspectedProcess updateProcess stopButton
-		updateButton defineButton monitorToggle stepping
-		steppedContextLineno stepForReturn actualContext inWrap
-		stackInspector steppedContext wrapperContext verboseBacktrace
-		firstContext stepHow cachable currentMethod ignoreBreakpoints
-		stepUntilEntering lastStepUntilEntering
-		lastSelectionInReceiverInspector lastSelectionInContextInspector
-		canShowMore exitAbort reportButton setOfHiddenCallingSelectors
-		isStoppedAtHaltOrBreakPoint exceptionInfoLabel methodCodeToggle
-		methodCodeToggleSelectionHolder
-		isStoppedAtBreakPointWithParameter breakPointParameter
-		hideSupportCode'
-	classVariableNames:'CachedDebugger CachedExclusive OpenDebuggers MoreDebuggingDetail
-		DebuggingDebugger DebuggingDebugger2
-		DefaultDebuggerBackgroundColor InitialNChainShown IgnoredHalts
-		ShowThreadID LastIgnoreHaltNTimes LastIgnoreHaltDuration
-		LastExtent LastOrigin RememberedCallChain DebuggingDebugger3'
-	poolDictionaries:''
-	category:'Interface-Debugger'
+        instanceVariableNames:'busy haveControl exitAction canContinue contextView codeView
+                receiverInspector contextInspector contextArray selectedContext
+                catchBlock grabber mayProceed traceView tracing bigStep
+                skipLineNr steppedContextAddress abortButton terminateButton
+                continueButton stepButton nextButton nextOverButton nextOutButton
+                sendButton returnButton restartButton exclusive inspecting
+                nChainShown inspectedProcess updateProcess stopButton
+                updateButton defineButton monitorToggle stepping
+                steppedContextLineno stepForReturn actualContext inWrap
+                stackInspector steppedContext wrapperContext verboseBacktrace
+                firstContext stepHow cachable currentMethod ignoreBreakpoints
+                stepUntilEntering lastStepUntilEntering
+                lastSelectionInReceiverInspector lastSelectionInContextInspector
+                canShowMore exitAbort reportButton setOfHiddenCallingSelectors
+                isStoppedAtHaltOrBreakPoint exceptionInfoLabel methodCodeToggle
+                methodCodeToggleSelectionHolder
+                isStoppedAtBreakPointWithParameter breakPointParameter
+                hideSupportCode'
+        classVariableNames:'CachedDebugger CachedExclusive OpenDebuggers MoreDebuggingDetail
+                DebuggingDebugger DebuggingDebugger2
+                DefaultDebuggerBackgroundColor InitialNChainShown IgnoredHalts
+                ShowThreadID LastIgnoreHaltNTimes LastIgnoreHaltDuration
+                LastExtent LastOrigin RememberedCallChain DebuggingDebugger3'
+        poolDictionaries:''
+        category:'Interface-Debugger'
 !
 
 Object subclass:#IgnoredHaltOrBreakpoint
-	instanceVariableNames:'ignoreEndTime ignoreCount ignoreUntilShiftKeyPressed'
-	classVariableNames:''
-	poolDictionaries:''
-	privateIn:DebugView
+        instanceVariableNames:'ignoreEndTime ignoreCount ignoreUntilShiftKeyPressed'
+        classVariableNames:''
+        poolDictionaries:''
+        privateIn:DebugView
 !
 
 DebugView::IgnoredHaltOrBreakpoint subclass:#IgnoredHalt
-	instanceVariableNames:'weakMethodHolder lineNumber'
-	classVariableNames:''
-	poolDictionaries:''
-	privateIn:DebugView
+        instanceVariableNames:'weakMethodHolder lineNumber'
+        classVariableNames:''
+        poolDictionaries:''
+        privateIn:DebugView
 !
 
 DebugView::IgnoredHaltOrBreakpoint subclass:#IgnoredBreakpoint
-	instanceVariableNames:'parameter'
-	classVariableNames:''
-	poolDictionaries:''
-	privateIn:DebugView
+        instanceVariableNames:'parameter'
+        classVariableNames:''
+        poolDictionaries:''
+        privateIn:DebugView
 !
 
 !DebugView class methodsFor:'documentation'!
@@ -1844,7 +1844,7 @@
     "Modified: / 17-04-1997 / 13:01:32 / stefan"
     "Created: / 30-10-1997 / 21:08:18 / cg"
     "Modified: / 13-10-1998 / 19:56:59 / ps"
-    "Modified: / 18-07-2012 / 17:20:49 / cg"
+    "Modified: / 25-07-2012 / 19:15:09 / cg"
 !
 
 exit_abort
@@ -4801,7 +4801,7 @@
                     ('-'                                                        )
                     ('Add Breakpoint'                   addBreakpoint           )
                     ('Remove Breakpoint'                removeBreakpoint        )
-                    ('Remove all Break- && Tracepoints'  removeAllBreakpoints    )
+                    ('Remove all Break- && Tracepoints'  removeAllBreakpoints   )
                     ('-'                                                        )
                   ).
     ] ifFalse:[
@@ -4889,7 +4889,7 @@
 
     ^ m.
 
-    "Modified: / 19-07-2012 / 11:31:57 / cg"
+    "Modified: / 25-07-2012 / 19:15:27 / cg"
 !
 
 notShowingSupportCode
@@ -6493,7 +6493,7 @@
     ^ true
 
     "Created: / 14-12-1995 / 19:10:31 / cg"
-    "Modified: / 20-07-2012 / 13:16:36 / cg"
+    "Modified: / 25-07-2012 / 19:15:01 / cg"
 !
 
 setContextSkippingInterruptContexts:aContext
@@ -8023,11 +8023,11 @@
 !DebugView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.548 2012-07-23 10:43:16 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.549 2012-07-25 17:20:06 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.548 2012-07-23 10:43:16 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.549 2012-07-25 17:20:06 cg Exp $'
 !
 
 version_SVN