docs(transformer/class-properties): re-order file list in doc comment (#7911)

Re-order list to reflect order transforms occur.
This commit is contained in:
overlookmotel 2024-12-15 14:11:47 +00:00
parent db9e93b554
commit 9989b58b1c

View file

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