File has a source file extension.
(self)
| 1155 | return '/'.join(self.Split()[0:2]) |
| 1156 | |
| 1157 | def IsSource(self): |
| 1158 | """File has a source file extension.""" |
| 1159 | return _IsSourceExtension(self.Extension()[1:]) |
| 1160 | |
| 1161 | |
| 1162 | def _ShouldPrintError(category, confidence, linenum): |
no test coverage detected