(self, db: &'db dyn Db)
| 62 | } |
| 63 | |
| 64 | pub fn python_file(self, db: &'db dyn Db) -> PythonFile<'db> { |
| 65 | self.program_file(db).python_file(db) |
| 66 | } |
| 67 | |
| 68 | pub fn scope(self, db: &'db dyn Db) -> ScopeId<'db> { |
| 69 | self.file_scope(db).to_scope_id(db, self.program_file(db)) |
nothing calls this directly
no test coverage detected