Propagate the newly learned information about our file to our internal data structures.
(self)
| 152 | self.files = set() |
| 153 | |
| 154 | def selfCheck(self): |
| 155 | """Propagate the newly learned information about our file to our internal data structures.""" |
| 156 | raise NotImplementedError("Subclasses should implement this!") |
| 157 | |
| 158 | def linkFile(self, file_match): |
| 159 | """Link our context to a code file (FileMatch instance). |