(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'} |
| 218 | |
| 219 | def isEnum(self): |
| 220 | return self.typeScope and self.typeScope.type == "Enum" |
no outgoing calls
no test coverage detected