ObjectFileLoader.st
changeset 148 ef0e604209ec
parent 147 9de6bea67dbf
child 149 3dc42a5ab417
equal deleted inserted replaced
147:9de6bea67dbf 148:ef0e604209ec
    11 "
    11 "
    12 
    12 
    13 Object subclass:#ObjectFileLoader
    13 Object subclass:#ObjectFileLoader
    14 	 instanceVariableNames:''
    14 	 instanceVariableNames:''
    15 	 classVariableNames:'MySymbolTable Verbose LastError LinkErrorMessage NextHandleID
    15 	 classVariableNames:'MySymbolTable Verbose LastError LinkErrorMessage NextHandleID
    16 		LoadedObjects PreviouslyLoadedObjects ActuallyLoadedObjects
    16                 LoadedObjects PreviouslyLoadedObjects ActuallyLoadedObjects
    17 		SearchedLibraries'
    17                 SearchedLibraries'
    18 	 poolDictionaries:''
    18 	 poolDictionaries:''
    19 	 category:'System-Compiler'
    19 	 category:'System-Compiler'
    20 !
    20 !
    21 
    21 
    22 !ObjectFileLoader primitiveDefinitions!
    22 !ObjectFileLoader primitiveDefinitions!
   177     Once stable, the functionality contained herein will be moved into
   177     Once stable, the functionality contained herein will be moved into
   178     the VM. 
   178     the VM. 
   179     (It is needed there, to allow reloading of objectfiles upon
   179     (It is needed there, to allow reloading of objectfiles upon
   180      image restart; i.e. before any class is reinitialilized).
   180      image restart; i.e. before any class is reinitialilized).
   181 "
   181 "
   182 !
       
   183 
       
   184 version
       
   185     ^ '$Header: /cvs/stx/stx/libcomp/ObjectFileLoader.st,v 1.55 1995-12-03 12:04:51 cg Exp $'
       
   186 ! !
   182 ! !
   187 
   183 
   188 !ObjectFileLoader class methodsFor:'initialization'!
   184 !ObjectFileLoader class methodsFor:'initialization'!
   189 
   185 
   190 initialize
   186 initialize
  2728 #endif
  2724 #endif
  2729 %}.
  2725 %}.
  2730     ^ false
  2726     ^ false
  2731 ! !
  2727 ! !
  2732 
  2728 
       
  2729 !ObjectFileLoader class methodsFor:'documentation'!
       
  2730 
       
  2731 version
       
  2732     ^ '$Header: /cvs/stx/stx/libcomp/ObjectFileLoader.st,v 1.56 1995-12-03 12:12:05 cg Exp $'
       
  2733 ! !
  2733 ObjectFileLoader initialize!
  2734 ObjectFileLoader initialize!