Beaglefoot / awk-language-server

Language Server for AWK and associated VSCode client extension
https://marketplace.visualstudio.com/items?itemName=beaglefoot.awk-ide-vscode
MIT License
91 stars 5 forks source link

Declared symbols aren't visible in outline #8

Closed Beaglefoot closed 2 years ago

Beaglefoot commented 2 years ago

Currently only defined symbols are visible. The following fragment shows a symbol only both in outline and document symbols.

BEGIN {
    a = 1
    b
}