Closed
Description
TypeScript Version: 3.9.0-dev.20200413
Search Terms:
- move to new file
- refactor / refactoring
Code
For the TS:
const dec: any = () => { };
class Foo {
constructor(
@dec private readonly bar: number
) { }
}
- Run
move to new file
onFoo
Bug:
The space between @dec
and private
is removed
class Foo {
constructor(
@decprivate readonly bar: number
) { }
}