ClassCategoryReader.st
changeset 1176 1c53fc7a69c0
parent 959 dbf9d63b4a6c
child 1295 83f594f05c52
equal deleted inserted replaced
1175:7ca26065cf02 1176:1c53fc7a69c0
   138 fileInFrom:aStream notifying:requestor passChunk:passChunk
   138 fileInFrom:aStream notifying:requestor passChunk:passChunk
   139     "read method-chunks from the input stream, aStream; compile them
   139     "read method-chunks from the input stream, aStream; compile them
   140      and add the methods to the class defined by the class-instance var;
   140      and add the methods to the class defined by the class-instance var;
   141      errors and notifications are passed to requestor"
   141      errors and notifications are passed to requestor"
   142 
   142 
   143     |aString done method compiler canMakeSourceRef sourceFile pos nm fn src s|
   143     |aString done method compiler canMakeSourceRef sourceFile pos nm src s|
   144 
   144 
   145     Smalltalk silentLoading ifFalse:[
   145     Smalltalk silentLoading ifFalse:[
   146         myClass isNil ifTrue:[
   146         myClass isNil ifTrue:[
   147             nm := '** UndefinedClass **'
   147             nm := '** UndefinedClass **'
   148         ] ifFalse:[
   148         ] ifFalse:[
   317 ! !
   317 ! !
   318 
   318 
   319 !ClassCategoryReader class methodsFor:'documentation'!
   319 !ClassCategoryReader class methodsFor:'documentation'!
   320 
   320 
   321 version
   321 version
   322     ^ '$Header: /cvs/stx/stx/libbasic/ClassCategoryReader.st,v 1.28 1996-02-10 12:27:13 cg Exp $'
   322     ^ '$Header: /cvs/stx/stx/libbasic/ClassCategoryReader.st,v 1.29 1996-04-13 20:35:19 cg Exp $'
   323 ! !
   323 ! !
   324 ClassCategoryReader initialize!
   324 ClassCategoryReader initialize!