ArithmeticValue.st
branchjv
changeset 19478 1f5aa87f6170
parent 19064 a091c7289e0e
parent 19454 895593647d58
child 20080 093324d7a47c
equal deleted inserted replaced
19477:af82888ceb72 19478:1f5aa87f6170
   244 !ArithmeticValue class methodsFor:'queries'!
   244 !ArithmeticValue class methodsFor:'queries'!
   245 
   245 
   246 isAbstract
   246 isAbstract
   247     "Return if this class is an abstract class.
   247     "Return if this class is an abstract class.
   248      True is returned for ArithmeticValue here; false for subclasses.
   248      True is returned for ArithmeticValue here; false for subclasses.
   249      Abstract subclasses must redefine again."
   249      Abstract subclasses must redefine this again."
   250 
   250 
   251     ^ self == ArithmeticValue
   251     ^ self == ArithmeticValue
   252 ! !
   252 ! !
       
   253 
   253 
   254 
   254 !ArithmeticValue methodsFor:'arithmetic'!
   255 !ArithmeticValue methodsFor:'arithmetic'!
   255 
   256 
   256 * something
   257 * something
   257     "return the product of the receiver and the argument."
   258     "return the product of the receiver and the argument."