The File class represents a particular source file that is part of a translation unit.
| 998 | return None |
| 999 | |
| 1000 | class File(ClangObject): |
| 1001 | """ |
| 1002 | The File class represents a particular source file that is part of a |
| 1003 | translation unit. |
| 1004 | """ |
| 1005 | |
| 1006 | @property |
| 1007 | def name(self): |
| 1008 | """Return the complete file and path name of the file.""" |
| 1009 | return File_name(self) |
| 1010 | |
| 1011 | @property |
| 1012 | def time(self): |
| 1013 | """Return the last modification time of the file.""" |
| 1014 | return File_time(self) |
| 1015 | |
| 1016 | class FileInclusion(object): |
| 1017 | """ |
no outgoing calls
no test coverage detected