compiler/TCompilationUnitDefinition.st
changeset 16 17a2d1d9f205
parent 8 eec72263ed75
equal deleted inserted replaced
15:10a95d798b36 16:17a2d1d9f205
       
     1 "
       
     2     Copyright (C) 2015-now Jan Vrany
       
     3 
       
     4     This code is not an open-source (yet). You may use this code
       
     5     for your own experiments and projects, given that:
       
     6 
       
     7     * all modification to the code will be sent to the
       
     8       original author for inclusion in future releases
       
     9     * this is not used in any commercial software
       
    10 
       
    11     This license is provisional and may (will) change in
       
    12     a future.
       
    13 "
     1 "{ Package: 'jv:tea/compiler' }"
    14 "{ Package: 'jv:tea/compiler' }"
     2 
    15 
     3 "{ NameSpace: Smalltalk }"
    16 "{ NameSpace: Smalltalk }"
     4 
    17 
     5 RGAbstractContainer subclass:#TCompilationUnitDefinition
    18 RGAbstractContainer subclass:#TCompilationUnitDefinition
     6 	instanceVariableNames:''
    19 	instanceVariableNames:''
     7 	classVariableNames:''
    20 	classVariableNames:''
     8 	poolDictionaries:''
    21 	poolDictionaries:''
     9 	category:'Languages-Tea-Compiler-Model'
    22 	category:'Languages-Tea-Compiler-Model'
    10 !
    23 !
       
    24 
       
    25 !TCompilationUnitDefinition class methodsFor:'documentation'!
       
    26 
       
    27 copyright
       
    28 "
       
    29     Copyright (C) 2015-now Jan Vrany
       
    30 
       
    31     This code is not an open-source (yet). You may use this code
       
    32     for your own experiments and projects, given that:
       
    33 
       
    34     * all modification to the code will be sent to the
       
    35       original author for inclusion in future releases
       
    36     * this is not used in any commercial software
       
    37 
       
    38     This license is provisional and may (will) change in
       
    39     a future.
       
    40 "
       
    41 ! !
    11 
    42 
    12 !TCompilationUnitDefinition methodsFor:'accessing'!
    43 !TCompilationUnitDefinition methodsFor:'accessing'!
    13 
    44 
    14 classes
    45 classes
    15     "Return a list of classes defined in this compilation unit"
    46     "Return a list of classes defined in this compilation unit"
    69     ^ visitor acceptCompilationUnitDefinition: self
   100     ^ visitor acceptCompilationUnitDefinition: self
    70 
   101 
    71     "Created: / 14-09-2015 / 10:32:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   102     "Created: / 14-09-2015 / 10:32:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    72 ! !
   103 ! !
    73 
   104 
       
   105 !TCompilationUnitDefinition class methodsFor:'documentation'!
       
   106 
       
   107 version_HG
       
   108 
       
   109     ^ '$Changeset: <not expanded> $'
       
   110 ! !
       
   111