ExampleMethod(text){
; insert logic here
return text
}
ExampleMethod2(text1, text2){
; insert logic here
return text1
}
; this converts correctly
a := 1, b:= 2
a := "s1", b := "s2"
a := WinActive("w1"), b := WinActive("w2")
a := "", b := "s2", c := ""
ExampleMethod2("", "")
; this does not
a := "", b := ""
a := ExampleMethod(""), b := ExampleMethod("")
a := "s1", b := "", c := ""
a := ExampleMethod2("", "")
V2 (Converted):
ExampleMethod(text){
; insert logic here
return text
}
ExampleMethod2(text1, text2){
; insert logic here
return text1
}
; this converts correctly
a := 1, b:= 2
a := "s1", b := "s2"
a := WinActive("w1"), b := WinActive("w2")
a := "", b := "s2", c := ""
ExampleMethod2("", "")
; this does not
a := `", b := `"
a := ExampleMethod(`"), b := ExampleMethod(`")
a := "s1", b := `", c := `"
a := ExampleMethod2(`", `")
V2 (Expected):
ExampleMethod(text){
; insert logic here
return text
}
ExampleMethod2(text1, text2){
; insert logic here
return text1
}
; this converts correctly
a := 1, b:= 2
a := "s1", b := "s2"
a := WinActive("w1"), b := WinActive("w2")
a := "", b := "s2", c := ""
ExampleMethod2("", "")
; this does not
a := "", b := ""
a := ExampleMethod(""), b := ExampleMethod("")
a := "s1", b := "", c := ""
a := ExampleMethod2("", "")
V1:
V2 (Converted):
V2 (Expected):