haxe-rename icon indicating copy to clipboard operation
haxe-rename copied to clipboard

Fails to rename local var

Open Jarrio opened this issue 8 months ago • 0 comments

var uid = data?.value ?? null;
if (uid == null) {
  return;
}
        
if (accs != null) {
  trace('Changed account to $uid');
  Globals.keys = accs[uid];
}

Running rename on uid it fails

Jarrio avatar Apr 04 '25 20:04 Jarrio