diff options
author | Heejin Ahn <aheejin@gmail.com> | 2019-08-14 01:35:58 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-14 01:35:58 +0900 |
commit | 3150801f60bd64280fe43fdf4604c50018949eb9 (patch) | |
tree | 1640fc52b2e783c78107a2bca7c0e566a220d2b2 /.flake8 | |
parent | a9c001a945ba35456e7ca49f1fe819db2f504bbf (diff) | |
download | wabt-3150801f60bd64280fe43fdf4604c50018949eb9.tar.gz wabt-3150801f60bd64280fe43fdf4604c50018949eb9.tar.bz2 wabt-3150801f60bd64280fe43fdf4604c50018949eb9.zip |
Visit catch even when its body is empty (#1141)
The current visitor does not visit `catch` itself when its body is
empty. So even if the attached test with an empty `catch` body is
supposed to be a validation failure (because an `exnref` value is left
on the stack in the `catch` body), it passed the validator.
In more detail, in the current code,
Input: (should be a validation failure)
```
try
catch ;; this pushes an exnref value onto the stack
end
```
Output: (wrong, `catch` is missing)
```
try
end
```
Now we correctly visit `catch` even when its body is empty, this test
correctly causes a validation failure.
Diffstat (limited to '.flake8')
0 files changed, 0 insertions, 0 deletions