[ty] Move class_member to member module (#20837)

## Summary

Move the `class_member` function to the `member` module. This allows us
to move the `member` module into the `types` module and to reduce the
visibility of its contents to `pub(super)`. The drawback is that we need
to make `place::place_by_id` public.

## Test Plan

Pure refactoring.
This commit is contained in:
David Peter 2025-10-13 10:58:37 +02:00 committed by GitHub
parent f715d70be1
commit 565dbf3c9d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 126 additions and 124 deletions

View file

@ -34,7 +34,6 @@ mod db;
mod dunder_all;
pub mod lint;
pub(crate) mod list;
mod member;
mod module_name;
mod module_resolver;
mod node_key;