docs(transformer/class-properties): add missing docs (#7588)

Docs only. Add mention of what `static_prop.rs` does to the main doc comment for the transform.
This commit is contained in:
overlookmotel 2024-12-03 07:46:02 +00:00
parent 7bd6350978
commit 370d4b9176

View file

@ -125,11 +125,12 @@
//!
//! Implementation is split into several files:
//!
//! * `mod.rs`: Setup, visitor and ancillary types.
//! * `class.rs`: Transform of class body.
//! * `constructor.rs`: Insertion of property initializers into class constructor.
//! * `private.rs`: Transform of private property usages (`this.#prop`).
//! * `utils.rs`: Utility functions.
//! * `mod.rs`: Setup, visitor, and ancillary types.
//! * `class.rs`: Transform of class body.
//! * `constructor.rs`: Insertion of property initializers into class constructor.
//! * `private.rs`: Transform of private property usages (`this.#prop`).
//! * `static_prop.rs`: Transform of static property initializers.
//! * `utils.rs`: Utility functions.
//!
//! ## References
//!