Open Banaanae opened 1 month ago
, "str", ""
causes issues in the second example
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) Fix would likely be
; 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 Maybe same fix as above?
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