diff options
author | Adam Gundry <adam@well-typed.com> | 2023-01-11 21:29:10 +0000 |
---|---|---|
committer | Adam Gundry <adam@well-typed.com> | 2023-01-12 08:11:18 +0000 |
commit | 50f373c0298ae5e3a3411facee39d75e39d9d561 (patch) | |
tree | af55658901f73ab63d7073e9305f1a3e4a49cd09 /docs/users_guide/using-warnings.rst | |
parent | 9b9142bf806d3cee2535fe07f692129b3d7017d6 (diff) | |
download | haskell-wip/amg/warning-refactoring.tar.gz |
Move documentation of deferred type error flags out of warnings sectionwip/amg/warning-refactoring
Diffstat (limited to 'docs/users_guide/using-warnings.rst')
-rw-r--r-- | docs/users_guide/using-warnings.rst | 65 |
1 files changed, 4 insertions, 61 deletions
diff --git a/docs/users_guide/using-warnings.rst b/docs/users_guide/using-warnings.rst index 6dd28683df..0e6bf826ee 100644 --- a/docs/users_guide/using-warnings.rst +++ b/docs/users_guide/using-warnings.rst @@ -343,7 +343,7 @@ of ``-W(no-)*``. Determines whether the compiler reports typed holes warnings. Has no effect unless typed holes errors are deferred until runtime. See - :ref:`typed-holes` and :ref:`defer-type-errors` + :ref:`typed-holes` and :ref:`defer-type-errors`. .. ghc-flag:: -Wdeferred-type-errors :shortdesc: Report warnings when :ref:`deferred type errors @@ -353,70 +353,12 @@ of ``-W(no-)*``. :reverse: -Wno-deferred-type-errors :category: - :since: 8.4 + :since: 8.0 :default: on Causes a warning to be reported when a type error is deferred until - runtime. See :ref:`defer-type-errors` - -.. ghc-flag:: -fdefer-type-errors - :shortdesc: Turn type errors into warnings, :ref:`deferring the error until - runtime <defer-type-errors>`. Implies - :ghc-flag:`-fdefer-typed-holes` and - :ghc-flag:`-fdefer-out-of-scope-variables`. - See also :ghc-flag:`-Wdeferred-type-errors` - :type: dynamic - :reverse: -fno-defer-type-errors - :category: - - :since: 7.6 - - :implies: :ghc-flag:`-fdefer-typed-holes`, :ghc-flag:`-fdefer-out-of-scope-variables` - - Defer as many type errors as possible until runtime. At compile time - you get a warning (instead of an error). At runtime, if you use a - value that depends on a type error, you get a runtime error; but you - can run any type-correct parts of your code just fine. See - :ref:`defer-type-errors` - -.. ghc-flag:: -fdefer-typed-holes - :shortdesc: Convert :ref:`typed hole <typed-holes>` errors into warnings, - :ref:`deferring the error until runtime <defer-type-errors>`. - Implied by :ghc-flag:`-fdefer-type-errors`. - See also :ghc-flag:`-Wtyped-holes`. - :type: dynamic - :reverse: -fno-defer-typed-holes - :category: - - :since: 7.10 - - Defer typed holes errors (errors about names with a leading underscore - (e.g., “_”, “_foo”, “_bar”)) until runtime. This will turn the errors - produced by :ref:`typed holes <typed-holes>` into warnings. Using a value - that depends on a typed hole produces a runtime error, the same as - :ghc-flag:`-fdefer-type-errors` (which implies this option). See :ref:`typed-holes` - and :ref:`defer-type-errors`. - - Implied by :ghc-flag:`-fdefer-type-errors`. See also :ghc-flag:`-Wtyped-holes`. - -.. ghc-flag:: -fdefer-out-of-scope-variables - :shortdesc: Convert variable out of scope variables errors into warnings. - Implied by :ghc-flag:`-fdefer-type-errors`. - See also :ghc-flag:`-Wdeferred-out-of-scope-variables`. - :type: dynamic - :reverse: -fno-defer-out-of-scope-variables - :category: - - :since: 8.0 - - Defer variable out-of-scope errors (errors about names without a leading underscore) - until runtime. This will turn variable-out-of-scope errors into warnings. - Using a value that depends on an out-of-scope variable produces a runtime error, - the same as :ghc-flag:`-fdefer-type-errors` (which implies this option). - See :ref:`typed-holes` and :ref:`defer-type-errors`. - - Implied by :ghc-flag:`-fdefer-type-errors`. See also :ghc-flag:`-Wdeferred-out-of-scope-variables`. + runtime. See :ref:`defer-type-errors`. .. ghc-flag:: -Wdeferred-out-of-scope-variables :shortdesc: Report warnings when variable out-of-scope errors are @@ -429,6 +371,7 @@ of ``-W(no-)*``. :since: 8.0 Warn when a deferred out-of-scope variable is encountered. + See :ref:`defer-type-errors`. .. ghc-flag:: -Wpartial-type-signatures :shortdesc: warn about holes in partial type signatures when |