Benjamin Loison bfca80bb8b Avoid crashes that can occur when using when with a statement that may crash if the when condition doesn't hold
For instance

```
node main () returns (o: int);
var i: int;
let
    i = 0;
    o = (1 / i) when false;
tel
```

used to crash with for instance:

```
Floating point exception
136
```

now returns `0` but in fact this value wouldn't be used in theory as the `when` condition doesn't hold.
2022-12-15 23:22:15 +01:00
2022-12-15 16:17:47 +01:00
2022-12-04 16:19:25 +01:00
2022-12-07 21:56:38 +01:00

The file is empty.
Description
No description provided
Readme 491 KiB
Languages
OCaml 91.6%
TeX 6.3%
Standard ML 2%
Makefile 0.1%