You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
println("x") (without semicolon) should result in an error but non is shown
possible solution(s):
Windows paths include a colon after the drive letter. In Diagnostics.ts the split position is hard-coded. Checking the OS-type and then setting the split position accordingly should solve the issue.
When checking if the line includes the path due to windows using backslashes instead of forward slashes the check will always be false. Also make the path to check OS-dependent in the caller (parser.ts)
The text was updated successfully, but these errors were encountered:
bug:
Error lines are not displayed on Windows.
println("x")
(without semicolon) should result in an error but non is shownpossible solution(s):
The text was updated successfully, but these errors were encountered: