(self)
| 211 | self.typeScope = IdMap[self.typeScopeId] |
| 212 | |
| 213 | def isIntegral(self): |
| 214 | return self.type in {'bool', 'char', 'short', 'int', 'long', 'long long'} |
| 215 | |
| 216 | def isFloat(self): |
| 217 | return self.type in {'float', 'double', 'long double'} |
no outgoing calls