IsDebuggingQuery.st
branchjv
changeset 18120 e3a375d5f6a8
parent 18028 e39da2aa21bc
parent 17268 28cc88757faf
--- a/IsDebuggingQuery.st	Tue Feb 04 21:09:59 2014 +0100
+++ b/IsDebuggingQuery.st	Wed Apr 01 10:20:10 2015 +0100
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libbasic' }"
 
+"{ NameSpace: Smalltalk }"
+
 Query subclass:#IsDebuggingQuery
 	instanceVariableNames:''
 	classVariableNames:''
@@ -33,21 +35,37 @@
  hereby transferred.
 
 "
+!
+
+documentation
+"
+    Answered by the debugger while we are in it.
+
+    Currently the only one interested in that are Futures,
+    which will not force their value while in the debugger
+    (so we can look at a future inside a debugger's inspector without
+    forcing them)
+
+    [Author:]
+        Stefan Vogel, eXept
+"
 ! !
 
 !IsDebuggingQuery methodsFor:'default values'!
 
 defaultResumeValue
+    "the default answer, if no one handles the query"
+
     ^ false
 ! !
 
 !IsDebuggingQuery class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/IsDebuggingQuery.st,v 1.2 2013-03-06 17:09:36 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/IsDebuggingQuery.st,v 1.4 2014-12-30 12:39:56 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/IsDebuggingQuery.st,v 1.2 2013-03-06 17:09:36 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/IsDebuggingQuery.st,v 1.4 2014-12-30 12:39:56 cg Exp $'
 ! !