MCPcopy
hub / github.com/xavierd/clang_complete / File

Class File

plugin/clang/cindex.py:1000–1014  ·  view source on GitHub ↗

The File class represents a particular source file that is part of a translation unit.

Source from the content-addressed store, hash-verified

998 return None
999
1000class 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
1016class FileInclusion(object):
1017 """

Callers 2

_get_instantiationMethod · 0.85
visitorMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected