oxc/crates/oxc_codegen/src
Boshen 3efbbb2e1f
feat(ast): add "abstract" type to MethodDefinition and PropertyDefinition (#2536)
closes #2532

```
pub enum PropertyDefinitionType {
    PropertyDefinition,
    TSAbstractPropertyDefinition,
}

pub enum MethodDefinitionType {
    MethodDefinition,
    TSAbstractMethodDefinition,
}
```
2024-02-28 17:33:11 +08:00
..
context.rs fix(codegen): format new expression + call expression with the correct parentheses (#2330) 2024-02-06 22:06:12 +08:00
gen.rs feat(ast): add "abstract" type to MethodDefinition and PropertyDefinition (#2536) 2024-02-28 17:33:11 +08:00
gen_ts.rs feat(ast): add "abstract" type to MethodDefinition and PropertyDefinition (#2536) 2024-02-28 17:33:11 +08:00
lib.rs feat(Codegen): Improve codegen (#2460) 2024-02-21 14:41:57 +08:00
operator.rs