Boolean.st
branchjv
changeset 18919 dbe023989a90
parent 18120 e3a375d5f6a8
parent 18915 ec56299ed41f
--- a/Boolean.st	Wed Nov 18 06:57:38 2015 +0100
+++ b/Boolean.st	Thu Nov 19 06:41:24 2015 +0100
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libbasic' }"
 
+"{ NameSpace: Smalltalk }"
+
 Object subclass:#Boolean
 	instanceVariableNames:''
 	classVariableNames:''
@@ -90,6 +92,9 @@
     "
 ! !
 
+
+
+
 !Boolean class methodsFor:'queries'!
 
 hasSharedInstances
@@ -100,6 +105,10 @@
     ^ true
 !
 
+isAbstract
+    ^ self == Boolean
+!
+
 isBuiltInClass
     "return true if this class is known by the run-time-system.
      Here, true is returned (for my two subclasses)."
@@ -110,6 +119,8 @@
 ! !
 
 
+
+
 !Boolean methodsFor:'blocked'!
 
 addDependent:someOne
@@ -193,6 +204,7 @@
     ^ self printString
 ! !
 
+
 !Boolean methodsFor:'testing'!
 
 isBoolean
@@ -228,13 +240,14 @@
     ^ aVisitor visitBoolean:self with:aParameter
 ! !
 
+
 !Boolean class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Boolean.st,v 1.43 2014-07-09 16:21:02 cg Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Boolean.st,v 1.43 2014-07-09 16:21:02 cg Exp $'
+    ^ '$Header$'
 ! !