File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
crates/oxc_transformer/src/es2022/class_properties Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 125125//!
126126//! Implementation is split into several files:
127127//!
128- //! * `mod.rs`: Setup and visitor.
129- //! * `class.rs`: Transform of class body.
130- //! * `constructor.rs`: Insertion of property initializers into class constructor.
131- //! * `private.rs`: Transform of private property usages (`this.#prop`).
132- //! * `private_props.rs`: Structures storing details of private properties.
128+ //! * `mod.rs`: Setup and visitor.
129+ //! * `class.rs`: Transform of class body.
130+ //! * `constructor.rs`: Insertion of property initializers into class constructor.
131+ //! * `private.rs`: Transform of private property usages (`this.#prop`).
132+ //! * `private_props.rs`: Structures storing details of private properties.
133133//! * `instance_prop_init.rs`: Transform of instance property initializers.
134- //! * `static_prop_init.rs`: Transform of static property initializers.
135- //! * `class_bindings.rs`: Structure containing bindings for class name and temp var.
136- //! * `super.rs`: Transform `super` expressions.
137- //! * `utils.rs`: Utility functions.
134+ //! * `static_prop_init.rs`: Transform of static property initializers.
135+ //! * `class_bindings.rs`: Structure containing bindings for class name and temp var.
136+ //! * `super.rs`: Transform `super` expressions.
137+ //! * `utils.rs`: Utility functions.
138138//!
139139//! ## References
140140//!
You can’t perform that action at this time.
0 commit comments