implement #[hdl] [a; N] -- an array repeat expression

This commit is contained in:
Jacob Lifshay 2024-07-16 17:19:17 -07:00
parent d610858144
commit c2e5ea8e89
Signed by: programmerjake
SSH key fingerprint: SHA256:B1iRVvUJkvd7upMIiMqn6OyxvD2SgJkAH3ZnUOj6z+c
4 changed files with 51 additions and 2 deletions

View file

@ -1515,6 +1515,7 @@ impl Fold for Visitor {
If => process_hdl_if,
Match => process_hdl_match,
Array => process_hdl_array,
Repeat => process_hdl_repeat,
Struct => process_hdl_struct,
Tuple => process_hdl_tuple,
Call => process_hdl_call,