Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small issue with ternary (?:) replacement #45

Open
ThomasMldr opened this issue Aug 5, 2022 · 0 comments
Open

Small issue with ternary (?:) replacement #45

ThomasMldr opened this issue Aug 5, 2022 · 0 comments

Comments

@ThomasMldr
Copy link

This

if (condition) {
  this.text = "one";
} else {
  this.text = "two";
}

becomes:
condition ? this.text = "one" : this.text = "two";
instead of the desired:
this.text = condition ? "one" : "two";

This only happens when the assignment happens to a variable beginning with this..
if it was just text instead of this.text the replace happens correctly (text = condition ? "one" : "two";)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant