class Apex(nil) { } class(#limited) Error(Apex) { } pooldic Error.Code { ENOERR := #\0. EGENERIC := #\1. ENOIMPL := #\2. ESYSERR := #\3. EINTERN := #\4. ESYSMEM := #\5. EOOMEM := #\6. EINVAL := #\7. ENOENT := #\8. EPERM := #\12. ERANGE := #\20. (* add more items... *) } (*pooldic Error.Code2 { >> CAN I SUPPORT this kind of redefnition? as of now, it's not accepted because >> Error.Code2.EGENERIC is not a literal. Should i treate pooldic members as a constant >> and treat it as if it's a literal like? then even if the defined value changes, >> the definition here won't see the change... what is the best way to tackle this issue? EGENERIC := Error.Code2.EGENERIC. }*) extend Apex { ## ------------------------------------------------------- ## ------------------------------------------------------- method(#dual) dump { } ## ------------------------------------------------------- ## ------------------------------------------------------- method(#dual) yourself { ^self } ## ------------------------------------------------------- ## INSTANTIATION & INITIALIZATION ## ------------------------------------------------------- method(#class,#primitive,#lenient) _basicNew. method(#class,#primitive,#lenient) _basicNew: size. method(#class,#primitive) basicNew. method(#class,#primitive) basicNew: size. (* the following definition is almost equivalent to the simpler definition * method(#class,#primitive) basicNew: size. * found above. * in the following defintion, the primitiveFailed method is executed * from the basicNew: context. but in the simpler definition, it is executed * in the context of the caller of the basicNew:. the context of the basicNew: * method is not even created method(#class) basicNew: size { self primitiveFailed(thisContext method) }*) method(#class) new { | x | x := self basicNew. x initialize. ## TODO: assess if it's good to call 'initialize' from new ^x. } method(#class) new: anInteger { | x | x := self basicNew: anInteger. x initialize. ## TODO: assess if it's good to call 'initialize' from new. ^x. } method initialize { (* a subclass may override this method *) ^self. } ## ------------------------------------------------------- ## ------------------------------------------------------- method(#dual,#primitive,#lenient) _shallowCopy. method(#dual,#primitive) shallowCopy. ## ------------------------------------------------------- ## ------------------------------------------------------- method(#dual,#primitive,#lenient) _basicSize. method(#dual,#primitive) basicSize. method(#dual,#primitive) basicAt: index. method(#dual,#primitive) basicAt: index put: value. method(#dual,#primitive) basicFillFrom: sindex with: value count: count. method(#dual,#primitive) basicShiftFrom: sindex to: dindex count: count. (* ------------------------------------------------------------------ * FINALIZATION SUPPORT * ------------------------------------------------------------------ *) method(#dual,#primitive) addToBeFinalized. method(#dual,#primitive) removeToBeFinalized. (* ------------------------------------------------------------------ * HASHING * ------------------------------------------------------------------ *) method(#dual,#primitive) hash. (* method(#dual) hash { self subclassResponsibility: #hash }*) (* ------------------------------------------------------------------ * IDENTITY TEST * ------------------------------------------------------------------ *) ## check if the receiver is identical to anObject. ## this doesn't compare the contents method(#dual, #primitive) == anObject. method(#dual) ~~ anObject { ^(self == anObject) not. } (* ------------------------------------------------------------------ * EQUALITY TEST * ------------------------------------------------------------------ *) method(#dual) = anObject { >' & ctx method name) }. ## TODO: include blockcontext??? ctx := ctx sender. }. System logNl: '== END OF BACKTRACE =='. thisContext unwindTo: (thisProcess initialContext) return: nil. ('### ERROR NOT HANDLED #### ' & self class name & ' - ' & self asString) dump. ## TODO: debug the current process???? " ##Processor activeProcess terminate. thisProcess terminate. } }