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

Field references are visible in workspace/document symbols #10

Closed Beaglefoot closed 2 years ago

Beaglefoot commented 2 years ago

If a variable value is assigned to field reference it becomes visible among other symbols. Here's an example:

function sum(a, b) {
  $12 = xyz
  return a + b;
}

image