nolanderc / glsl_analyzer

Language server for GLSL (autocomplete, goto-definition, formatter, and more)
GNU General Public License v3.0
171 stars 4 forks source link

Completions should include `#define NAME ...` #3

Closed nolanderc closed 10 months ago

nolanderc commented 10 months ago

References currently cannot point to the preprocessor tokens, since they are not included in the parse tree, but in a supplementary list. We should consider instead appending ignored tokens (comments and preprocessors) to the parse tree, after all the ordinary syntax nodes.