TextCollectingCompilationErrorHandler.st
changeset 3863 f76515fab307
parent 2454 b8ed44a5c0c7
child 4317 55b15140c1bb
equal deleted inserted replaced
3862:42354ffef3a1 3863:f76515fab307
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 "{ Package: 'stx:libcomp' }"
    12 "{ Package: 'stx:libcomp' }"
       
    13 
       
    14 "{ NameSpace: Smalltalk }"
    13 
    15 
    14 CompilationErrorHandler subclass:#TextCollectingCompilationErrorHandler
    16 CompilationErrorHandler subclass:#TextCollectingCompilationErrorHandler
    15 	instanceVariableNames:'lines collectWarnings'
    17 	instanceVariableNames:'lines collectWarnings'
    16 	classVariableNames:''
    18 	classVariableNames:''
    17 	poolDictionaries:''
    19 	poolDictionaries:''
    56 
    58 
    57     myStream nextPutLine:('Error: [' ,
    59     myStream nextPutLine:('Error: [' ,
    58                           aCompiler classToCompileFor name
    60                           aCompiler classToCompileFor name
    59                           , '>>',
    61                           , '>>',
    60                           (aCompiler selector ? '???')
    62                           (aCompiler selector ? '???')
    61                           , '] ' , (aMessage allBold colorizeAllWith:Color red darkened)).
    63                           , '] ' , (aMessage allBold withColor:Color red darkened)).
    62 
    64 
    63     "Created: / 02-11-2010 / 12:52:23 / cg"
    65     "Created: / 02-11-2010 / 12:52:23 / cg"
    64     "Modified: / 03-11-2010 / 12:28:49 / cg"
    66     "Modified: / 03-11-2010 / 12:28:49 / cg"
    65 !
    67 !
    66 
    68 
    90 ! !
    92 ! !
    91 
    93 
    92 !TextCollectingCompilationErrorHandler class methodsFor:'documentation'!
    94 !TextCollectingCompilationErrorHandler class methodsFor:'documentation'!
    93 
    95 
    94 version_CVS
    96 version_CVS
    95     ^ '$Header: /cvs/stx/stx/libcomp/TextCollectingCompilationErrorHandler.st,v 1.6 2010-11-03 11:31:30 cg Exp $'
    97     ^ '$Header$'
    96 ! !
    98 ! !
       
    99