Open tivac opened 6 years ago
I've got code like this:
const key = this.get("key");
currently that doesn't get transformed. It should become
const { key } = this.get();
(or at least warn me about a this.get("<arg>") usage so I can go clean it up manually)
this.get("<arg>")
Not sure this going to be supported, I just updated observe and get calls manually... https://svelte.technology/blog/version-2
I've got code like this:
currently that doesn't get transformed. It should become
(or at least warn me about a
this.get("<arg>")
usage so I can go clean it up manually)