(self, data)
| 3714 | self.reportError(directive, 20, 3) |
| 3715 | |
| 3716 | def misra_20_4(self, data): |
| 3717 | for directive in data.directives: |
| 3718 | res = re.search(r'#define ([a-z][a-z0-9_]+)', directive.str) |
| 3719 | if res and isKeyword(res.group(1), data.standards.c): |
| 3720 | self.reportError(directive, 20, 4) |
| 3721 | |
| 3722 | def misra_20_5(self, data): |
| 3723 | for directive in data.directives: |
nothing calls this directly
no test coverage detected