AHK-v2-script-converter icon indicating copy to clipboard operation
AHK-v2-script-converter copied to clipboard

Unwanted "" -> `" in ternary

Open Banaanae opened this issue 4 months ago • 0 comments

V1:

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

V2 (Converted):

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

V2 (Expected):

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

Banaanae avatar Oct 03 '24 10:10 Banaanae