You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class Example {
var b: cloud.Bucket;
new(c: cloud.Bucket){
this.b = new cloud.Bucket();
}
something(b: cloud.Bucket) {
this.b = b;
// ^ put cursor on this
}
}
This happened:
I put the cursor on the code inside something method
this.b = b;
// ^ put cursor on this
and renamed to renamed, the result is:
bring cloud;
class Example {
var b: cloud.Bucket;
new(c: cloud.Bucket){
this.b = new cloud.Bucket();
}
something(renamed: cloud.Bucket) {
this.renamed = renamed;
}
}
Notice that:
the actual member name wasn't renamed
The argument of something was renamed
Instead, lets prevent this
I expected this:
No response
Is there a workaround?
No response
Anything else?
No response
Wing Version
0.74.8
Node.js Version
No response
Platform(s)
No response
Community Notes
Please vote by adding a 👍 reaction to the issue to help us prioritize.
If you are interested to work on this issue, please leave a comment.
The text was updated successfully, but these errors were encountered:
I tried this:
have the following code
This happened:
I put the cursor on the code inside
something
methodand renamed to renamed, the result is:
Notice that:
Instead, lets prevent this
I expected this:
No response
Is there a workaround?
No response
Anything else?
No response
Wing Version
0.74.8
Node.js Version
No response
Platform(s)
No response
Community Notes
The text was updated successfully, but these errors were encountered: