docs(transformer/class-properties): reformat doc comment (#7909)

This commit is contained in:
overlookmotel 2024-12-15 12:22:31 +00:00
parent a5f04a72b5
commit 73900482c3

View file

@ -125,16 +125,16 @@
//! //!
//! Implementation is split into several files: //! Implementation is split into several files:
//! //!
//! * `mod.rs`: Setup and visitor. //! * `mod.rs`: Setup and visitor.
//! * `class.rs`: Transform of class body. //! * `class.rs`: Transform of class body.
//! * `constructor.rs`: Insertion of property initializers into class constructor. //! * `constructor.rs`: Insertion of property initializers into class constructor.
//! * `private.rs`: Transform of private property usages (`this.#prop`). //! * `private.rs`: Transform of private property usages (`this.#prop`).
//! * `private_props.rs`: Structures storing details of private properties. //! * `private_props.rs`: Structures storing details of private properties.
//! * `instance_prop_init.rs`: Transform of instance property initializers. //! * `instance_prop_init.rs`: Transform of instance property initializers.
//! * `static_prop_init.rs`: Transform of static property initializers. //! * `static_prop_init.rs`: Transform of static property initializers.
//! * `class_bindings.rs`: Structure containing bindings for class name and temp var. //! * `class_bindings.rs`: Structure containing bindings for class name and temp var.
//! * `super.rs`: Transform `super` expressions. //! * `super.rs`: Transform `super` expressions.
//! * `utils.rs`: Utility functions. //! * `utils.rs`: Utility functions.
//! //!
//! ## References //! ## References
//! //!