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
In Visual Studio and Visual Studio Code, when haskell-debug-adapter runs into an error it continues running indefinitely, until the user terminates the debugger. The debugger should automatically halt when a problem occurs so that the user can rectify the issue
For example, consider the following code
moduleMainwhere
main =doputStrLn3
This will result in a compilation failure (3 is not a string - should be putStrLn $ show 3) however when you attempt to run this under haskell-debug-adapter, the debugger just keeps running indefinitely as if the program is still going
The text was updated successfully, but these errors were encountered:
In Visual Studio and Visual Studio Code, when
haskell-debug-adapter
runs into an error it continues running indefinitely, until the user terminates the debugger. The debugger should automatically halt when a problem occurs so that the user can rectify the issueFor example, consider the following code
This will result in a compilation failure (
3
is not a string - should beputStrLn $ show 3
) however when you attempt to run this underhaskell-debug-adapter
, the debugger just keeps running indefinitely as if the program is still goingThe text was updated successfully, but these errors were encountered: