oxc/crates/oxc_codegen
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
..
examples refactor: remove panic! from examples (#2454) 2024-02-20 16:18:39 +08:00
src feat(ast): add "abstract" type to MethodDefinition and PropertyDefinition (#2536) 2024-02-28 17:33:11 +08:00
tests feat(Codegen): Improve codegen (#2460) 2024-02-21 14:41:57 +08:00
Cargo.toml Publish crates v0.8.0 2024-02-26 19:01:51 +08:00