Deprecate then Remove `-ddump-json`
This is an issue to track the deprecation and removal of the -ddump-json flag, which is being replaced by the -fdiagnostics-as-json flag. Details of the discussion can be found at #19278.
Tasks:
Any code that uses MCDiagnostic (directly or via mkMCDiagnostic or errorDiagnostic) side steps -fdiagnostics-as-json. To address this:
-
Refactor all places in the compiler that report diagnostics to use printMessages/reportError/reportDiagnosticfromGHC.Driver.Errors. -
Get rid of errorDiagnostic -
Rename mkMCDiagnostictounsafeMCDiagnostic -
Hide MCDiagnostic
Edited by Simon Hengel