oxc/crates/oxc_codegen/src
Boshen bbf9ec0774 fix(codegen): add missing declare to PropertyDefinition (#4937)
I'm seeing a broken test for

```rust
    #[test]
    fn dts_class_decl_prop_test() {
        transform_dts_test(
            "export class Foo { declare a: string }",
            "export declare class Foo {
  a: string;
}",
        );
    }
```

can you double check @Dunqing ?
2024-08-17 14:26:24 +00:00
..
annotation_comment.rs feat(oxc_codegen): support generate range leading comments (#4898) 2024-08-15 04:20:48 +00:00
binary_expr_visitor.rs feat(codegen): implement BinaryExpressionVisitor (#4548) 2024-07-31 12:44:19 +00:00
context.rs feat(codegen): align operator precedence with esbuild (#4509) 2024-07-28 11:48:51 +00:00
gen.rs fix(codegen): add missing declare to PropertyDefinition (#4937) 2024-08-17 14:26:24 +00:00
lib.rs feat(oxc_codegen): support generate range leading comments (#4898) 2024-08-15 04:20:48 +00:00
operator.rs
sourcemap_builder.rs perf(codegen): reduce size of LineOffsetTable (#4643) 2024-08-06 01:08:12 +00:00