serve-d icon indicating copy to clipboard operation
serve-d copied to clipboard

Auto documentation of parameters with default values broken

Open WebFreak001 opened this issue 4 years ago • 0 comments

In some cases like

int f(int a, int b = 2)

the auto generated docs are

Params:
  a = 
Returns: 

and in some other cases like

string f(string a, string b = null)

the auto generated docs are

Params:
  a = 
  null = 
Returns: 

WebFreak001 avatar Feb 09 '20 15:02 WebFreak001