Parameters not documented correctly
Describe the bug Documenter not able to identify parameters correctly when the parameter is vector type and the vector is defined using another parameter. Also the default value is not generated correctly when replication operator is used.
To Reproduce In the example code below the parameters PCIE_MSTR_ID_DEFAULT, VMID_DEFAULT and VMID_CODE_DEFAULT are not generated by the documenter. And for VMID_DEFAULT the value is undefined.
module abc # (
parameter int WIDTH_VMID = 8,
parameter int WIDTH_VMID_CODE = 5,
parameter int WIDTH_PCIE_REQID = 16,
parameter int WIDTH_FW_REQID = 6,
//! Master ID attribute to be driven on NOC INIU
parameter logic [WIDTH_FW_REQID-1:0] PCIE_MSTR_ID_DEFAULT = 6'b111100,
//! Default VMID when it is not enabled
parameter logic [WIDTH_VMID-1:0] VMID_DEFAULT = {WIDTH_VMID{1'b0}},
//! Default VMID_ECC_CODE value for default VMID
parameter logic [WIDTH_VMID_CODE-1:0] VMID_CODE_DEFAULT = 5'b00001
) (
input ina,
input inb,
output outz
);
endmodule
Please complete the following information:
- OS: Windows 11 Home Single Language, 21H2, Build:22000.593
- VSCode version 1.67.0-insider
Screenshots

Additional context Add any other context about the problem here.