From cafb61378a0e0277d797a0c60f0ba9101ccabb3d Mon Sep 17 00:00:00 2001 From: overlookmotel Date: Mon, 2 Dec 2024 21:48:15 +0000 Subject: [PATCH] docs(transformer/class-properties): add missing docs --- .../src/es2022/class_properties/mod.rs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/crates/oxc_transformer/src/es2022/class_properties/mod.rs b/crates/oxc_transformer/src/es2022/class_properties/mod.rs index 33138dd64e5dd4..0516a3643e84b1 100644 --- a/crates/oxc_transformer/src/es2022/class_properties/mod.rs +++ b/crates/oxc_transformer/src/es2022/class_properties/mod.rs @@ -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 //!