compiler/TType.st
changeset 3 97ee341d3e9f
parent 2 2a3e47c13905
child 7 7556e3d41d80
equal deleted inserted replaced
2:2a3e47c13905 3:97ee341d3e9f
     6 	instanceVariableNames:''
     6 	instanceVariableNames:''
     7 	classVariableNames:''
     7 	classVariableNames:''
     8 	poolDictionaries:''
     8 	poolDictionaries:''
     9 	category:'Languages-Tea-Compiler-Types'
     9 	category:'Languages-Tea-Compiler-Types'
    10 !
    10 !
       
    11 
       
    12 
       
    13 !TType methodsFor:'comparing'!
       
    14 
       
    15 = anotherType
       
    16     ^ self subclassResponsibility
       
    17 
       
    18     "Created: / 25-08-2015 / 23:34:29 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
    19 !
       
    20 
       
    21 hash
       
    22     ^ self subclassResponsibility
       
    23 
       
    24     "Created: / 25-08-2015 / 23:33:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
    25 ! !
    11 
    26 
    12 !TType methodsFor:'operations'!
    27 !TType methodsFor:'operations'!
    13 
    28 
    14 union: aTType
    29 union: aTType
    15     TUnionType with: self with: aTType
    30     TUnionType with: self with: aTType
    41 
    56 
    42 isUnionType
    57 isUnionType
    43     ^ false
    58     ^ false
    44 ! !
    59 ! !
    45 
    60 
       
    61 !TType class methodsFor:'documentation'!
       
    62 
       
    63 version
       
    64     ^ 'Path: jv/tea/compiler/TType.st, Version: 1.0, User: jv, Time: 2015-08-26T07:46:38.380+01'
       
    65 !
       
    66 
       
    67 version_HG
       
    68     ^ 'Path: jv/tea/compiler/TType.st, Version: 1.0, User: jv, Time: 2015-08-26T07:46:38.380+01'
       
    69 ! !
       
    70