ReadEvalPrintLoop.st
changeset 15365 d77ca24522dc
parent 13866 c15dce4faf10
child 15702 01c33c1f4990
child 18066 89d51443ba6f
equal deleted inserted replaced
15364:685b11d5ea89 15365:d77ca24522dc
   234                     nextPutLine:' (',(mod type),')'.
   234                     nextPutLine:' (',(mod type),')'.
   235             ].
   235             ].
   236 
   236 
   237         self errorStream nextPutLine:'builtIn:'.
   237         self errorStream nextPutLine:'builtIn:'.
   238         ((ObjectMemory binaryModuleInfo 
   238         ((ObjectMemory binaryModuleInfo 
   239             select:[:m | m dynamic not])
   239             reject:[:m | m dynamic])
   240                 asSortedCollection:[:a :b | a name < b name]) do:printModule.
   240                 asSortedCollection:[:a :b | a name < b name]) do:printModule.
   241 
   241 
   242         self errorStream nextPutLine:'dynamic:'.
   242         self errorStream nextPutLine:'dynamic:'.
   243         ((ObjectMemory binaryModuleInfo 
   243         ((ObjectMemory binaryModuleInfo 
   244             select:[:m | m dynamic])
   244             select:[:m | m dynamic])
   424 ! !
   424 ! !
   425 
   425 
   426 !ReadEvalPrintLoop class methodsFor:'documentation'!
   426 !ReadEvalPrintLoop class methodsFor:'documentation'!
   427 
   427 
   428 version
   428 version
   429     ^ '$Header: /cvs/stx/stx/libbasic/ReadEvalPrintLoop.st,v 1.39 2011-12-07 21:16:18 cg Exp $'
   429     ^ '$Header: /cvs/stx/stx/libbasic/ReadEvalPrintLoop.st,v 1.40 2013-06-04 10:30:45 cg Exp $'
   430 !
   430 !
   431 
   431 
   432 version_CVS
   432 version_CVS
   433     ^ '$Header: /cvs/stx/stx/libbasic/ReadEvalPrintLoop.st,v 1.39 2011-12-07 21:16:18 cg Exp $'
   433     ^ '$Header: /cvs/stx/stx/libbasic/ReadEvalPrintLoop.st,v 1.40 2013-06-04 10:30:45 cg Exp $'
   434 ! !
   434 ! !
       
   435