Files
Nim/tests/ccgbugs
ringabout 093f5a1de5 Makes except: panics on Defect (#24821)
implements https://github.com/nim-lang/RFCs/issues/557

It inserts defect handing into a bare except branch

```nim
try:
  raiseAssert "test"
except:
  echo "nope"
```

=>

```nim
try:
  raiseAssert "test"
except:
  # New behaviov, now well-defined: **never** catches the assert, regardless of panic mode
  raiseDefect()
  echo "nope"
```

In this way, `except` still catches foreign exceptions, but panics on
`Defect`. Probably when Nim has `except {.foreign.}`, we can extend
`raiseDefect` to foreign exceptions as well. That's supposed to be a
small use case anyway.

 `--legacy:noPanicOnExcept` is provided for a transition period.

(cherry picked from commit 26b86c8f4d)
2025-04-04 10:08:49 +02:00
..
2018-08-12 20:43:30 +02:00
2018-03-23 13:28:22 +01:00
2021-11-12 11:19:24 +01:00
2021-02-08 09:46:07 +01:00
2018-12-11 21:23:22 +01:00
2018-12-11 21:23:22 +01:00
2018-09-28 09:59:45 +02:00
2019-05-06 09:34:03 +02:00
2021-01-11 18:02:32 +01:00
2021-09-14 19:40:42 +02:00
2020-11-18 07:56:31 +00:00
2021-03-02 19:41:55 +08:00
2019-11-05 11:05:46 +01:00
2015-04-11 10:01:13 +02:00
2016-08-09 14:16:26 +02:00
2025-01-14 13:23:12 +01:00
2016-06-02 17:23:39 +02:00
2022-09-23 13:05:05 +02:00
2021-09-14 19:39:55 +02:00
2016-09-07 08:29:45 +02:00
2018-12-11 21:23:22 +01:00
2022-09-23 13:05:05 +02:00
2021-01-22 13:14:28 +01:00
2021-03-11 14:03:25 +01:00
2016-01-30 15:45:45 +01:00
2020-11-26 20:00:31 +01:00
2022-09-23 13:05:05 +02:00
2019-06-26 23:15:58 +02:00
2017-02-09 01:16:43 +01:00
2015-03-24 23:07:19 +01:00
2017-11-19 00:37:36 +01:00
2018-03-16 15:32:01 +01:00
2025-01-14 09:08:32 +01:00
2016-03-29 21:44:42 +02:00
2019-05-05 16:08:16 +02:00
2016-07-19 15:40:21 +02:00
2016-04-19 12:10:48 +02:00
2015-10-06 15:51:00 +02:00
2017-02-26 17:41:00 +01:00
2016-08-24 11:48:21 +02:00
2019-05-10 11:43:58 +02:00
2019-05-06 09:34:03 +02:00
2019-05-06 09:34:03 +02:00
2019-05-06 09:34:03 +02:00
2019-05-06 09:34:03 +02:00
2019-05-06 09:34:03 +02:00