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
90 stars 5 forks source link

Validate that break statement is within loop or switch #19

Closed Beaglefoot closed 2 years ago

Beaglefoot commented 2 years ago

The following example is invalid:

function fn() {
    break
}