File has a source file extension.
(self)
| 1186 | return '/'.join(self.Split()[0:2]) |
| 1187 | |
| 1188 | def IsSource(self): |
| 1189 | """File has a source file extension.""" |
| 1190 | return _IsSourceExtension(self.Extension()[1:]) |
| 1191 | |
| 1192 | |
| 1193 | def _ShouldPrintError(category, confidence, linenum): |
no test coverage detected