(op)
| 2419 | |
| 2420 | def misra_10_2(self, data): |
| 2421 | def isEssentiallySignedOrUnsigned(op): |
| 2422 | e = getEssentialType(op) |
| 2423 | return e and (e.split(' ')[0] in ('unsigned', 'signed')) |
| 2424 | |
| 2425 | def isEssentiallyChar(op): |
| 2426 | if op is None: |
nothing calls this directly
no test coverage detected