-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
see #296 comments for info
- Loading branch information
Showing
10 changed files
with
42 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
tests/Test_Folder/Failed conversions/ContinuationComments_ex1.ah1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
DllCall("Func" | ||
, "Str", "ABC" ; Comment | ||
, "Str", "123" ; Comment | ||
, "Str", "DEF") ; Comment |
4 changes: 4 additions & 0 deletions
4
tests/Test_Folder/Failed conversions/ContinuationComments_ex1.ah2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
DllCall("Func" | ||
, "Str", "ABC" ; Comment | ||
, "Str", "123" ; Comment | ||
, "Str", "DEF") ; Comment |
4 changes: 4 additions & 0 deletions
4
tests/Test_Folder/Failed conversions/ContinuationComments_ex2.ah1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Var := "Comment should be on this line" ; Comment | ||
. "Not this line" | ||
|
||
; See also: Assignment_ex10 |
4 changes: 4 additions & 0 deletions
4
tests/Test_Folder/Failed conversions/ContinuationComments_ex2.ah2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Var := "Comment should be on this line" ; Comment | ||
. "Not this line" | ||
|
||
; See also: Assignment_ex10 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Var := "" | ||
. "Multi line " | ||
. "String concat" ; Works if this line isn't blank | ||
|
||
MsgBox(Var) |