Thanks for the great tool and quick response in #20133.
I am adopting Vite 8 now and found an issue, the following code:
export class Foo {
@property()
accessor prop!: string;
@property()
accessor _prop!: string;
}
Produces an output where the same backing field is used for both prop and _prop. In turn this leads to a runtime error
TypeError: Cannot initialize the same private elements twice on an object
See a reproduction of the exact circumstances here
Thanks for the great tool and quick response in #20133.
I am adopting Vite 8 now and found an issue, the following code:
Produces an output where the same backing field is used for both
propand_prop. In turn this leads to a runtime errorSee a reproduction of the exact circumstances here