|
175 | 175 | //!
|
176 | 176 | //! Implementation is split into several files:
|
177 | 177 | //!
|
178 |
| -//! * `mod.rs`: Setup and visitor. |
179 |
| -//! * `class.rs`: Transform of class body. |
180 |
| -//! * `prop_decl.rs`: Transform of property declarations (instance and static). |
181 |
| -//! * `constructor.rs`: Insertion of property initializers into class constructor. |
182 |
| -//! * `instance_prop_init.rs`: Transform of instance property initializers. |
183 |
| -//! * `static_prop_init.rs`: Transform of static property initializers and static blocks. |
184 |
| -//! * `computed_key.rs`: Transform of property/method computed keys. |
185 |
| -//! * `private_field.rs`: Transform of private fields (`this.#prop`). |
186 |
| -//! * `super.rs`: Transform `super` expressions. |
187 |
| -//! * `class_details.rs`: Structures containing details of classes and private properties. |
188 |
| -//! * `class_bindings.rs`: Structure containing bindings for class name and temp var. |
189 |
| -//! * `utils.rs`: Utility functions. |
| 178 | +//! * `mod.rs`: Setup and visitor. |
| 179 | +//! * `class.rs`: Transform of class body. |
| 180 | +//! * `prop_decl.rs`: Transform of property declarations (instance and static). |
| 181 | +//! * `constructor.rs`: Insertion of property initializers into class constructor. |
| 182 | +//! * `instance_prop_init.rs`: Transform of instance property initializers. |
| 183 | +//! * `static_block_and_prop_init.rs`: Transform of static property initializers and static blocks. |
| 184 | +//! * `computed_key.rs`: Transform of property/method computed keys. |
| 185 | +//! * `private_field.rs`: Transform of private fields (`this.#prop`). |
| 186 | +//! * `super.rs`: Transform `super` expressions. |
| 187 | +//! * `class_details.rs`: Structures containing details of classes and private properties. |
| 188 | +//! * `class_bindings.rs`: Structure containing bindings for class name and temp var. |
| 189 | +//! * `utils.rs`: Utility functions. |
190 | 190 | //!
|
191 | 191 | //! ## References
|
192 | 192 | //!
|
@@ -215,7 +215,7 @@ mod constructor;
|
215 | 215 | mod instance_prop_init;
|
216 | 216 | mod private_field;
|
217 | 217 | mod prop_decl;
|
218 |
| -mod static_prop_init; |
| 218 | +mod static_block_and_prop_init; |
219 | 219 | mod supers;
|
220 | 220 | mod utils;
|
221 | 221 | use class_bindings::ClassBindings;
|
|
0 commit comments