(self, data)
| 2345 | self.reportError(func.tokenDef, 8, 10) |
| 2346 | |
| 2347 | def misra_8_11(self, data): |
| 2348 | for var in data.variables: |
| 2349 | if var.isExtern and simpleMatch(var.nameToken.next, '[ ]') and var.nameToken.scope.type == 'Global': |
| 2350 | self.reportError(var.nameToken, 8, 11) |
| 2351 | |
| 2352 | def misra_8_12(self, data): |
| 2353 | for scope in data.scopes: |
nothing calls this directly
no test coverage detected