How to obtain all symbol tables through textDocumentSymbol request
wxllllll opened this issue · 0 comments
wxllllll commented
Describe the question
How to obtain all symbol tables through textDocumentSymbol request?
I found that when sending a textDocumentSymbol request using the following example, the returned symbols only contain A and b. And a and c is not included.
Example
module A(input a);
reg b;
input c;
endmodule;