mmikeww / AHK-v2-script-converter

AHK v1 -> v2 script converter
https://autohotkey.com/boards/viewtopic.php?f=6&t=25100
The Unlicense
580 stars 44 forks source link

Unwanted "" -> `" in ternary #301

Closed Banaanae closed 1 week ago

Banaanae commented 1 month ago

V1:

x := x = "" ? 0 : ""

V2 (Converted):

x := x = `" ? 0 : `"

V2 (Expected):

x := x = "" ? 0 : ""