return the file name we use for searching -- this is the preprocessed file if it exists
(self)
| 65 | |
| 66 | |
| 67 | def search_name(self): |
| 68 | """return the file name we use for searching -- this is the |
| 69 | preprocessed file if it exists""" |
| 70 | |
| 71 | if self.cpp_name is not None: |
| 72 | search_file = self.cpp_name |
| 73 | else: |
| 74 | search_file = self.name |
| 75 | |
| 76 | return search_file |
| 77 | |
| 78 | |
| 79 | def obj(self): |
no outgoing calls
no test coverage detected