Skip to content

Commit

Permalink
refactor(transformer/class-properties): rename file (#7767)
Browse files Browse the repository at this point in the history
Cosmetic change. Rename file that deals with static property initializers to have a more descriptive name.
  • Loading branch information
overlookmotel committed Dec 10, 2024
1 parent e97a954 commit 016ae92
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions crates/oxc_transformer/src/es2022/class_properties/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,14 +125,14 @@
//!
//! Implementation is split into several files:
//!
//! * `mod.rs`: Setup and visitor.
//! * `class.rs`: Transform of class body.
//! * `constructor.rs`: Insertion of property initializers into class constructor.
//! * `private.rs`: Transform of private property usages (`this.#prop`).
//! * `private_props.rs`: Structures storing details of private properties.
//! * `static_prop.rs`: Transform of static property initializers.
//! * `class_bindings.rs`: Structure containing bindings for class name and temp var.
//! * `utils.rs`: Utility functions.
//! * `mod.rs`: Setup and visitor.
//! * `class.rs`: Transform of class body.
//! * `constructor.rs`: Insertion of property initializers into class constructor.
//! * `private.rs`: Transform of private property usages (`this.#prop`).
//! * `private_props.rs`: Structures storing details of private properties.
//! * `static_prop_init.rs`: Transform of static property initializers.
//! * `class_bindings.rs`: Structure containing bindings for class name and temp var.
//! * `utils.rs`: Utility functions.
//!
//! ## References
//!
Expand All @@ -158,7 +158,7 @@ mod class_bindings;
mod constructor;
mod private;
mod private_props;
mod static_prop;
mod static_prop_init;
mod utils;
use class_bindings::ClassBindings;
use private_props::PrivatePropsStack;
Expand Down

0 comments on commit 016ae92

Please sign in to comment.