-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
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
Continuation strips or places comments in wrong spot #296
Comments
|
Banaanae
changed the title
Contiuation DllCall issues
Contiuation strips or places comments in wrong spot
Nov 5, 2024
Issues with large portions of code going missing are now fixed Comments in continuations face 1 of 2 issues var := "line 1" ; comment 1
. "line 2" ; comment 2
; -> converts to ->
var := "line 1"
. "line 2" ; comment 1 The converter treats above as one line (rather than 2, this is intended behaviour) ; Store comment in map
; line comment is on: comment
; restore once line conversion is done Same issue with function continuations but they are stripped instead |
Banaanae
changed the title
Contiuation strips or places comments in wrong spot
Continuation strips or places comments in wrong spot
Jan 18, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
V1:
V2 (Converted):
V2 (Expected):
Two examples, second one came when trying to reproduce first
Need to look into it further
Example 1: Comments are stripped
When return variables are removed comments are still missing
The text was updated successfully, but these errors were encountered: