dlang / ddox

Advanced D documentation engine
MIT License
63 stars 21 forks source link

ellipsis for typesafe variadic parameters not shown #177

Closed MartinNowak closed 6 years ago

MartinNowak commented 6 years ago
module app;

///
void bug(int[4] args...)
{
}

///
void bug(int[] args...)
{
}

Shown as

void bug(
  int[4] args
);

void bug(
  int[] args
); 

What's a bit tricky here is that this "styling" of the parameter depends on the deco of the function. Hopefully not too difficult to transport the information.