Author Topic: struct in union for system verilog can't auto complete  (Read 5035 times)

ycyang

  • Community Member
  • Posts: 19
  • Hero Points: 1
struct in union for system verilog can't auto complete
« on: August 04, 2019, 01:13:02 AM »
HI,
   The example of this kind of syntax for system verilog can't autocomplete in slickedit v23.0.2.0. Is it possible to support auto-complete for this kine of syntax?

typedef union packed
{
    logic[31:0] dWord;
    struct packed
    {       
        logic [29:0] dummy;
        logic        w1Clr_intTxInf;
        logic        w1Clr_intAck;
    } regVal;
} frmCnt_ctrl1_t;

Ya-Cahu

patrick

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 1818
  • Hero Points: 151
Re: struct in union for system verilog can't auto complete
« Reply #1 on: August 05, 2019, 01:09:28 PM »
I can reproduce that.  I'll investigate, I think this can be hot-fixed.

patrick

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 1818
  • Hero Points: 151
Re: struct in union for system verilog can't auto complete
« Reply #2 on: August 05, 2019, 01:24:32 PM »
This will be fixed in the next hot fix.  Thanks for the report.