Go to file
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
beamer [beamer] slide 7 2022-12-15 16:17:47 +01:00
src Avoid crashes that can occur when using when with a statement that may crash if the when condition doesn't hold 2022-12-15 23:22:15 +01:00
.gitignore [passes] fix for the equation ordering pass 2022-12-15 17:40:15 +01:00
Makefile [parser] parses and dumps content (without expressions) 2022-12-07 16:45:55 +01:00
README.md README 2022-12-04 16:19:25 +01:00
TODO [parser] adding support for expressions 2022-12-07 21:56:38 +01:00