(description)
| 71 | |
| 72 | |
| 73 | def make_variable_docstring(description): |
| 74 | description = re.sub(r"//", "", description).strip() |
| 75 | description = re.sub(r"\n[ ]*", "\n/// ", description) |
| 76 | |
| 77 | if description == "": |
| 78 | return "" |
| 79 | else: |
| 80 | return f""" |
| 81 | /// |
| 82 | /// {description} |
| 83 | /// |
| 84 | """ |
| 85 | |
| 86 | |
| 87 | def process_header_file(filename): |
no outgoing calls
no test coverage detected