Skip to content

Commit

Permalink
refactor(transformer/class-properties): rename file
Browse files Browse the repository at this point in the history
  • Loading branch information
overlookmotel committed Dec 20, 2024
1 parent 4410da9 commit fa723d2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions crates/oxc_transformer/src/es2022/class_properties/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,18 +175,18 @@
//!
//! Implementation is split into several files:
//!
//! * `mod.rs`: Setup and visitor.
//! * `class.rs`: Transform of class body.
//! * `prop_decl.rs`: Transform of property declarations (instance and static).
//! * `constructor.rs`: Insertion of property initializers into class constructor.
//! * `instance_prop_init.rs`: Transform of instance property initializers.
//! * `static_prop_init.rs`: Transform of static property initializers and static blocks.
//! * `computed_key.rs`: Transform of property/method computed keys.
//! * `private_field.rs`: Transform of private fields (`this.#prop`).
//! * `super.rs`: Transform `super` expressions.
//! * `class_details.rs`: Structures containing details of classes and private properties.
//! * `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.
//! * `prop_decl.rs`: Transform of property declarations (instance and static).
//! * `constructor.rs`: Insertion of property initializers into class constructor.
//! * `instance_prop_init.rs`: Transform of instance property initializers.
//! * `static_block_and_prop_init.rs`: Transform of static property initializers and static blocks.
//! * `computed_key.rs`: Transform of property/method computed keys.
//! * `private_field.rs`: Transform of private fields (`this.#prop`).
//! * `super.rs`: Transform `super` expressions.
//! * `class_details.rs`: Structures containing details of classes and private properties.
//! * `class_bindings.rs`: Structure containing bindings for class name and temp var.
//! * `utils.rs`: Utility functions.
//!
//! ## References
//!
Expand Down Expand Up @@ -215,7 +215,7 @@ mod constructor;
mod instance_prop_init;
mod private_field;
mod prop_decl;
mod static_prop_init;
mod static_block_and_prop_init;
mod supers;
mod utils;
use class_bindings::ClassBindings;
Expand Down

0 comments on commit fa723d2

Please sign in to comment.