mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
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:
parent
7bd6350978
commit
370d4b9176
1 changed files with 6 additions and 5 deletions
|
|
@ -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
|
||||
//!
|
||||
|
|
|
|||
Loading…
Reference in a new issue