LLVMVisibility.st
changeset 14 c7dea3fcc5a7
parent 13 fa967c0e1827
child 79 6d6e5a3ec6b1
equal deleted inserted replaced
13:fa967c0e1827 14:c7dea3fcc5a7
       
     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:llvm_s' }"
    14 "{ Package: 'jv:llvm_s' }"
     2 
    15 
     3 "{ NameSpace: Smalltalk }"
    16 "{ NameSpace: Smalltalk }"
     4 
    17 
     5 SharedPool subclass:#LLVMVisibility
    18 SharedPool subclass:#LLVMVisibility
     7 	classVariableNames:'LLVMDefaultVisibility LLVMHiddenVisibility
    20 	classVariableNames:'LLVMDefaultVisibility LLVMHiddenVisibility
     8 		LLVMProtectedVisibility'
    21 		LLVMProtectedVisibility'
     9 	poolDictionaries:''
    22 	poolDictionaries:''
    10 	category:'LLVM-S-Core-Constants'
    23 	category:'LLVM-S-Core-Constants'
    11 !
    24 !
       
    25 
       
    26 !LLVMVisibility class methodsFor:'documentation'!
       
    27 
       
    28 copyright
       
    29 "
       
    30     Copyright (C) 2015-now Jan Vrany
       
    31 
       
    32     This code is not an open-source (yet). You may use this code
       
    33     for your own experiments and projects, given that:
       
    34 
       
    35     * all modification to the code will be sent to the
       
    36       original author for inclusion in future releases
       
    37     * this is not used in any commercial software
       
    38 
       
    39     This license is provisional and may (will) change in
       
    40     a future.
       
    41 "
       
    42 ! !
    12 
    43 
    13 !LLVMVisibility class methodsFor:'initialization'!
    44 !LLVMVisibility class methodsFor:'initialization'!
    14 
    45 
    15 initialize
    46 initialize
    16 
    47