summary refs log tree commit diff stats
path: root/tests/whenstmt
Commit message (Collapse)AuthorAgeFilesLines
* fix #19426 compile error using when/elif/else and typedesc in template (#20550)Bung2022-10-211-0/+16
|
* Fix #12517 Allow single branch when nimvm statements (#20577)Can Lehmann2022-10-171-0/+21
| | | Allow single branch when statements
* remove echo statements in tests (part 1) (#20178)ringabout2022-08-231-7/+1
| | | | | | | | | | | * remove echo statements * Update tests/vm/triangle_array.nim * Update tests/vm/tyaytypedesc.nim Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com> Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com>
* when statements branches exit early (#17143)Saem Ghani2021-02-222-0/+71
When statement branches exit early outside of nimvm. In nimvm it seems that all sides of the branches must be evaluated as the code gen happens at a later stage, this remains intact.