We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
FIXED
<!description="Convert to ternary"> if ($cond$){ $var = $a; }else{ $var = $b; } => $var = ($cond$)?$a:$b; ;; if ($cond$){ return $a; }else{ return $b; } return ($cond$)?$a:$b; <!description="Convert ternary to if/else"> return ($cond$)?$a:$b; => if ($cond$){ return $a; }else{ return $b; } ;; <!description="Convert ternary to if/else"> $var = ($cond$)?$a:$b; => if ($cond$){ $var = $a; }else{ $var = $b; } ;;
The text was updated successfully, but these errors were encountered:
issue #31: draft
49c3051
issue #31: Convert from/to ternary - 2ternary hints
b92096b
issue #31: Convert from/to ternary - 2ifelse hints
773cb8d
* updated description too
Merge branch 'feature/issue-31-convert2ternary'
fca1b2f
* feature/issue-31-convert2ternary: issue #31: Convert from/to ternary - 2ifelse hints * updated description too issue #31: Convert from/to ternary - 2ternary hints issue #31: draft
Fixed in 1.2
Sorry, something went wrong.
No branches or pull requests
FIXED
The text was updated successfully, but these errors were encountered: