diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2022-10-15 20:07:40 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-15 14:07:40 +0200 |
commit | 1e15f975b83951006d69e6e39836aa2d525028c4 (patch) | |
tree | d43b2b539494a46df310d91d565c9858e6dcb0b9 /doc | |
parent | 0510a2be0d6df674aa91ae3f2884d98473cade4c (diff) | |
download | Nim-1e15f975b83951006d69e6e39836aa2d525028c4.tar.gz |
fixes #19162; enable `strictEffects` for v2 (#19380)
* enable stricteffects * add gcsafe * fix tests * use func * fixes pegs tests * explicitly mark repr related procs with noSideEffect * add nimLegacyEffects * change URL * fixes docopt * add `raises: []` to repr * fixes weave * fixes nimyaml * fixes glob * fixes parsetoml * Apply suggestions from code review * Update testament/important_packages.nim * add legacy:laxEffects
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.md | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/doc/manual.md b/doc/manual.md index df486d446..8431eba3d 100644 --- a/doc/manual.md +++ b/doc/manual.md @@ -4952,8 +4952,7 @@ Effect system ============= **Note**: The rules for effect tracking changed with the release of version -1.6 of the Nim compiler. This section describes the new rules that are activated -via `--experimental:strictEffects`. +1.6 of the Nim compiler. Exception tracking @@ -5073,7 +5072,6 @@ conservative in its effect analysis: ```nim test = "nim c $1" status = 1 {.push warningAsError[Effect]: on.} - {.experimental: "strictEffects".} import algorithm |