Load the translation unit from the given AST file.
(self, path)
| 956 | Index_dispose(self) |
| 957 | |
| 958 | def read(self, path): |
| 959 | """Load the translation unit from the given AST file.""" |
| 960 | ptr = TranslationUnit_read(self, path) |
| 961 | if ptr: |
| 962 | return TranslationUnit(ptr) |
| 963 | return None |
| 964 | |
| 965 | def parse(self, path, args = [], unsaved_files = [], options = TranslationUnit.Nothing): |
| 966 | """ |
no test coverage detected