compiler/TFilesystemProvider.st
changeset 11 6d39860d0fdb
parent 10 2b9beeac547e
child 16 17a2d1d9f205
equal deleted inserted replaced
10:2b9beeac547e 11:6d39860d0fdb
     6 	instanceVariableNames:'classpath'
     6 	instanceVariableNames:'classpath'
     7 	classVariableNames:''
     7 	classVariableNames:''
     8 	poolDictionaries:''
     8 	poolDictionaries:''
     9 	category:'Languages-Tea-Compiler-Model-Provider'
     9 	category:'Languages-Tea-Compiler-Model-Provider'
    10 !
    10 !
       
    11 
    11 
    12 
    12 !TFilesystemProvider class methodsFor:'instance creation'!
    13 !TFilesystemProvider class methodsFor:'instance creation'!
    13 
    14 
    14 new
    15 new
    15     "return an initialized instance"
    16     "return an initialized instance"
    56     classpath := OrderedCollection with: (Smalltalk packageDirectoryForPackageId: 'jv:tea') / 'libt'
    57     classpath := OrderedCollection with: (Smalltalk packageDirectoryForPackageId: 'jv:tea') / 'libt'
    57 
    58 
    58     "Modified: / 14-09-2015 / 15:06:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    59     "Modified: / 14-09-2015 / 15:06:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    59 ! !
    60 ! !
    60 
    61 
       
    62 !TFilesystemProvider class methodsFor:'documentation'!
       
    63 
       
    64 version_HG
       
    65 
       
    66     ^ '$Changeset: <not expanded> $'
       
    67 ! !
       
    68